I tried to generate report from Exchange 2010 and export in excel with the following report criteria:
- List all shared mailboxes
- alias
- email address
- active/not active
- users of shared mailbox
I tried this in the exchange management shell:
Get-Mailbox -ResultSize Unlimited | FT DisplayName, alias, *SMTP*, *Email*, *type*, *unit* | Export-CSV C:\sharedmailbox.csv
Then I tried this:
Get-Mailbox -ResultSize Unlimited | FT DisplayName, alias, *PrimarySMTP*, RecipientType*, *unit* | Export-csv C:\Sharedmailbox.csv
both scripts were not successful.
I would appreciate if someone can help me.
Thank you very much.