Checking Number Of User Mailboxes in a Multi Exchange Server Enviroment
One thing I need to consider when creating users in a Multi-Exchange environment is how many users sit on each Exchange Server – This is so that I can ensure that there is a fair load on all the servers. Luckily this can be achieved by a simple PowerShell execution
Get-Mailbox -resultsize unlimited | Group-Object -Property:ServerName | Select-Object name,count