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...
cloudservuscom Jul 11, 2011 7:20:43 PM
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
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...
There is a nice new feature in Exchange 2010 with Outlook 2007/2010/2013, called automapping. Autodiscover automatically maps all mailboxes in...
Great post by Joe Stocker