Friday, June 21, 2013

CMDLET PowerShell To Get All Users Mailbox Size And Statistics On Exchange 2007

Simply run the following command from the Exchange Power Shell
Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label="TotalItemSize(KB)";expression={$_.TotalItemSize.Value.ToKB()}},ItemCount

No comments:

Post a Comment