List all online archives and their total size in PowerShell

Ever wondered how much space individual online archives were occupying?  Me too, so I decided to generate a list using the Get-MailboxStatistics PowerShell command.  Here is the command I used to obtain the details and format the table to list the results in size order:

Get-Mailbox | Get-MailboxStatistics -Archive -ErrorAction SilentlyContinue | Sort-Object TotalItemSize | FT DisplayName,ItemCount,TotalItemSize

Get-MailboxStatistics_Output

Note: the online archives are stored within the user mailbox and not in a separate folder or database.

[BlogBookmark] [Blogsvine] [del.icio.us] [Digg] [Facebook] [Furl] [Google] [LinkedIn] [MySpace] [Reddit] [Slashdot] [StumbleUpon] [Twitter] [Windows Live] [Yahoo!] [Email]