Mailbox Count in exchange server and Database wise

How to count the mailboxes in exchange server and Database wise

[PS] C:\Windows\system32>get-mailbox -ResultSize unlimited | Group-Object -Property:Database | Select-Object name,count

[PS] C:\Windows\system32>get-mailbox -ResultSize unlimited | Group-Object -Property:ServerName | Select-Object name,count

Server Wise Count

Name                                                                                                                     Count
----                                                                                                                          -----
CMEX01                                                                                                               1678
CMEX02                                                                                                               1695


Database wise mailbox count

Name                                                                                                                       Count
----                                                                                                                            -----
CMDAGDB011                                                                                                        150
CMDAGDB012                                                                                                        101
CMDAGDB013                                                                                                        128


Comments