Thursday, September 25, 2014

Find the biggest mailboxes

Here is a quick one-liner for listing the mailboxes in a database to find the biggest one. Just change the DAG name and the DB name to your environment:

Get-MailboxStatistics -Database DAG1-DB10 | Select DisplayName,TotalItemSize | Sort TotalItemSize | Ft -AutoSize

Cheers!

No comments:

Post a Comment