I really only need to display the Company and Department associated with each user to verify they are correct, instead of going through each users Properties in the Exchange 2007 Console. I figured I could write a simple powershell command to do this:
get-mailbox -identity "superdave67" | format-table alias, company, department
or better yet:
get-mailbox "superdave67" | format-table all
Granted, these are not a valid commands (well, the first one is), but I simply need something to retrieve the data. We've recently migrated hundreds of users from Notes, and many users have moved departments and such, and would like a simple output to identify the department. I figured I'd ask the more broad question of displaying ALL the data associated with a particular user in case I need to look at other information on a global scale.
Thanks all,
Dave