Posted on July 26th, 2010 at 2:29 PM by Michael

A common question asked on tech forums for Exchange 2010 is how to list the size of a users mailbox. Using the following quick power shell command will reveal these key details:

Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,TotalItemSize,ItemCount

Once this is done you will need to enter the users mailbox identity then you will be shown the size of the users mailbox.

Comments Off