Posts Tagged ‘overview’
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
With this PowerShell command you get an overview of database sizes, last full backups and active servers. (get-mailboxdatabase -status) | foreach-object {write-host $_Server $_.Name $_.lastfullbackup $_.databasesize} Cheers, Chris
Filed under: Exchange 2010, MBX, Powershell | 3 Comments
Tags: 2010, backup, database, exchange, full, mailbox, overview, powershell