You can retrieve all kinds of information about a mailbox database using the Exchange Management Shell cmdlets. Surprisingly, the total number of mailboxes in a given mailbox database is not one of those pieces of information. We need to retrieve this data manually. Luckily, PowerShell makes this easy, as you will see in this recipe.
Finding the total number of mailboxes in a database
How to do it...
- There are two ways that you can retrieve the total number of mailboxes in a database. First, we can use the Count property of a collection of mailboxes:
@(Get-Mailbox -Database DB1).count
- Another way to retrieve this information is to use the Measure-Object cmdlet using the same collection from the preceding example...