I am Dale Hayter, a Microsoft and VMware certified Technical Consultant.

My blog has been built up over the years from my experience of working on an IT helpdesk and also from being out on-site.

Exchange 2010 / 2013 – List Online Archive Mailbox Sizes

You might need to find out the sizes of all your users online archive mailbox in Exchange 2010 or 2013.

To do this you can run this command in the Exchange Management Shell. It will return the top 100. Change the value of -First if you need more.

Get-MailboxDatabase | Get-Mailbox -Archive -ResultSize Unlimited | Get-MailboxStatistics -Archive | Sort-Object TotalItemSize -Descending | Select-Object DisplayName,TotalItemSize -First 100