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


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


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



Follow

Get every new post delivered to your Inbox.

Join 301 other followers