Skip to the main content.

Reporting on Mailboxes and Moving Mailboxes based on Input File

 

 

Get-Mailbox -resultsize unlimited | Get-MailboxStatistics | where {$_.ObjectClass -eq “Mailbox”} | Sort-Object TotalItemSize -Descending | ft DisplayName,@{expression={$_.TotalItemSize.Value.ToMB()}},ItemCount,StorageLimitStatus > C:InstallsScriptsMailboxSizes.txt

 

Get-Content .mailboxmove.txt | New-MoveRequest -TargetDatabase EXDAG01DB01 -Confirm:$false

Finding Mailboxes Homed on a particular Server or Database

The following sections offer a different method to find the mailboxes that are homed on a mailbox store. When you have determined that a particular...

Read More

Automapping Mailboxes in Exchange 2010 and Outlook

There is a nice new feature in Exchange 2010 with Outlook 2007/2010/2013, called automapping. Autodiscover automatically maps all mailboxes in...

Read More