Getting A List Of All Resource Mailboxes In 2007…

Exchange 2007 brings in the concept of resource mailboxes – room and equipment mailboxes. The AD accounts associated with these mailboxes will be disabled automatically for security. You can see the resource mailboxes in the EMC along with all other mailboxes. You can also set filtering to list only resource mailboxes in the console. But,…

Exchange 2007 brings in the concept of resource mailboxes – room and equipment mailboxes. The AD accounts associated with these mailboxes will be disabled automatically for security. You can see the resource mailboxes in the EMC along with all other mailboxes. You can also set filtering to list only resource mailboxes in the console.

But, how can we do it in the shell?

In order to list all the resource mailboxes in your organization, run the command

Get-Mailbox | Where-object { $_.IsResourceeq ‘true’ }

To list all room mailboxes, run any one command,

Get-Mailbox –RecipientTypeDetails RoomMailbox

Get-Mailbox | Where-Object { $_.IsResourcetypeeq ‘room’ }

To list all equipment mailboxes, run any one command,

Get-Mailbox –RecipientTypeDetails EquipmentMailbox

Get-Mailbox | Where-Object { $_.IsResourcetypeeq ‘equipment’ }

2 Comments

  1. How would I display additional information (with PowerShell) such as Address and Notes?

    1. Rajith Enchiparambil says:

      Bit more info please John. Thanks.

Leave a Reply

Your email address will not be published. Required fields are marked *