if you want to export all you mailboxes sizes to CSV/Excel, you can run this command in you powershell:
1 |
get-mailbox | get-mailboxstatistics | select-object displayname, itemcount, totalitemsize | export-csv c:\mailbox-size.txt |
if you want to export all you mailboxes sizes to CSV/Excel, you can run this command in you powershell:
1 |
get-mailbox | get-mailboxstatistics | select-object displayname, itemcount, totalitemsize | export-csv c:\mailbox-size.txt |