Exchange Server 2010 – Get a List of All Mailbox Columns/Attribute Names

To get a list of all available column names or mailbox attributes so you know what values to enter when trying to sort query results with the “Get-Mailbox” command, issue the following in the Exchange Management Shell:

Get-Mailbox | Get-Member

This also works when you need to figure out all the mailbox statistic column names:

Get-Mailbox | Get-MailboxStatistics | Get-Member

Leave a Reply