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}
时间: 2024-10-06 01:20:37
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}