room mailbox. To do so, you would open the Exchange Management Shell and enter the following command:
Set-Mailbox Room1 –Type Room
In this command, I could have replaced the word room with regular, equipment or shared, depending on the type of mailbox that Room1 will be assigned. The command's syntax is simple, but the account that you're using to perform the operation must be given an Exchange Recipient Administrator role.
To check if a mailbox has been designated as a resource mailbox, use the Get-Mailbox command. To find out if Room1 is acting as a resource mailbox, enter:
Get-Mailbox Room1 -> select name, IsResource, ResourceType, Servername
The command output will display the name of the mailbox, followed by a true/false indication of whether or not the mailbox is acting as a resource mailbox. If it's a resource mailbox, then the resource type (room or equipment) is listed. Finally, the name of server that's hosting the mailbox is displayed.
You can also modify this command so that Exchange displays a list of all resource mailboxes in your organization. To do so, enter:
Get-Mailbox -> Where-Object { $_.IsResource –eq 'true' } -> Select Name, ResourceType, ServerName
In this command, I've replaced the mailbox name with a query that will display any mailbox for which the IsResource attribute is set to true. Because the IsResource attribute is set to true for all displayed results, I also modified the Select statement at the end of the command to drop the IsResource field. This command displays the mailbox name, resource type and the name of the server that's hosting the mailbox.
About the author: Brien M. Posey, MCSE, is a four-time recipient of Microsoft's Most Valuable Professional Award for his work with Windows Server, Internet Information Server (IIS) and Exchange Server. Brien has served as CIO for a nationwide chain of hospitals and healthcare facilities, and was once a network administrator for Fort Knox. You can visit Brien's personal web site at www.brienposey.com.
Do you have comments on this tip? Let us know.
Please let others know how useful this tip was via the rating scale below. Do you know a helpful Exchange Server, Microsoft Outlook or SharePoint tip, timesaver or workaround? Email the editors to talk about writing for SearchExchange.com.