Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
September 13, 2008
A. The following command will display the number of mailboxes per database on the specified server:
Get-Mailbox -server | Group-Object -Property:Database | Select-Object Name,Count
You May Also Like