Are there any tools to analyze the usage of an Exchange mailbox

exchangeexchange-2007reportingusage

I'm looking for a tool (preferably free) that can analyze the usage in an Exchange mailbox similar to "folder size" type tools for file shares. I'd like to be able to see how space is consumed in a mailbox (items, calendar, tasks, etc.) as well as what kind of attachments (doc, xls, mp3, etc.) are present.

Any recommendations?

Best Answer

You could definatley write something to get your individual folder sizes (calendar, tasks etc) this in Powershell, im not to sure on the types of attachments though.

You would use the -FolderScope parameter to focus on particualr folder, so for the calendard it would be:

Get-MailboxFolderStatistics -Identity $user -FolderScope "Calendar" 
|select FolderAndSubfolderSize

You could combine a number of these calls to get sizes for all folders.

Related Topic