Posts Tagged ‘statistics’
With this command you get an overview over a certain user’s mailbox folders: Get-MailboxFolderStatistics user@domain.com | ft folderpath, itemsinfolder You can limit this to special folder, too: Get-MailboxFolderStatistics -identity user@domain.com -FolderScope ‘DeletedItems’ | Select Identity, FolderPath, ItemsInFolder, FolderSize Cheers, Chris
Filed under: Exchange 2010, MBX, Powershell | Leave a Comment
Tags: 2010, ems, exchange, folder, mailbox, overview, powershell, statistics, user
An overview over mailbox sizes ordered by item size and conversion to MB Get-Mailbox -RecipientType ‘UserMailbox’ -ResultSize unlimited | Get-MailboxStatistics | where {$_.ObjectClass –eq “Mailbox”} | Sort-Object TotalItemSize –Descending | ft @{label=”User”;expression={$_.DisplayName}},@{label=”Total Size (MB)”;expression={$_.TotalItemSize.Value.ToMB()}},@{label=”Items”;expression={$_.ItemCount}},@{label=”Storage Limit”;expression={$_.StorageLimitStatus}} -auto Cheers, Chris
Filed under: Exchange 2010, MBX, Powershell | 2 Comments
Tags: 2010, conversion, exchange, limit, mailboxes, overview, statistics, storage