Find your 10 top largest mailboxes with Powershell
September 12, 2008 Leave a comment
Heres a quick powershell script to find your ten biggest mailboxes via powershell :
Get-MailboxStatistics -server SERVERNAME |sort-object -Property totalitemsize -des |select-object Displayname, ItemCount, totalItemSize -first 10
Just replace SERVERNAME with your server, and away you go.