Archive

Posts Tagged ‘get-mailboxstatistics’

How to determine size of mailboxes in Exchange 2010

January 11th, 2012 No comments

Here is a short script to find out the size of mailboxes in your Exchange 2010 infrastructure. This information is not visible in EMC.

Get-MailboxStatistics -Server 'mailserver' | select DisplayName, TotalItemSize | sort TotalItemSize

Microsoft people should leave good things in GUI consoles and not force admins into powershell.