powershell help exporting recepient information
i ran this powershell cmdlet 'get-mailbox | export-csv mailboxes.csv' which exported all recpepeints in my org to a .csv . is there a way to filter wha'ts piped to the csv. i'd like to pipe only display name, username, and mailbox location.
any insight would be greatly appreciated.
thanks!
March 29th, 2010 9:06pm
Use the select command to choose only the attributes you need. Ex. get-mailbox | select displayname, samaccountname, database | export-csv c:\mailboxes.csvshalini
Free Windows Admin Tool Kit Click here and download it now
March 29th, 2010 9:55pm
sweet, thanks man. much obliged.
March 30th, 2010 4:23pm