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 { $_.IsResource –eq ‘true’ }
To list all room mailboxes, run any one command,
Get-Mailbox –RecipientTypeDetails RoomMailbox
Get-Mailbox | Where-Object { $_.IsResourcetype –eq ‘room’ }
To list all equipment mailboxes, run any one command,
Get-Mailbox –RecipientTypeDetails EquipmentMailbox
Get-Mailbox | Where-Object { $_.IsResourcetype –eq ‘equipment’ }
How would I display additional information (with PowerShell) such as Address and Notes?
Bit more info please John. Thanks.