Finding the total number of mailboxes in a database

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.

How to do it...

  1. 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
  2. Another way to retrieve this information is to use the Measure-Object cmdlet using the same collection from the preceding example:
    Get-Mailbox -Database DB1 | Measure-Object ...

Get Microsoft Exchange 2010 PowerShell Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.