Ex2010-03 figure out the number of mailboxes per database


A quick powershell command to figure out the number of mailboxes per database:

(get-mailboxdatabase) | foreach-object {write-host $_.name (get-mailbox -database $_.name).count}

Ex2010-03 figure out the number of mailboxes per database_第1张图片

你可能感兴趣的:(Exchange)