Exchange Mailbox size sorted for all users

In the Exchange management shell you can run the following command.

Get-mailbox | Get-Mailboxstatistics | select displayname,TotalItemSize,ItemCount, @{expression={$_.totalitemsize.value.ToMB()};label=”Size(MB)”} | Sort-Object TotalItemSize -Descending

Be the first to comment

Leave a Reply