<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Exchange Server Pro &#187; Resource Mailboxes</title>
	<atom:link href="http://exchangeserverpro.com/tag/resource-mailboxes/feed" rel="self" type="application/rss+xml" />
	<link>http://exchangeserverpro.com</link>
	<description>Microsoft Exchange Server News - Tips - Tutorials</description>
	<lastBuildDate>Wed, 23 May 2012 11:55:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes</title>
		<link>http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes</link>
		<comments>http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes#comments</comments>
		<pubDate>Sun, 06 May 2012 13:35:48 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Free/Busy]]></category>
		<category><![CDATA[Resource Mailboxes]]></category>
		<category><![CDATA[Room Mailboxes]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4788</guid>
		<description><![CDATA[How to show the full free/busy details to users for Exchange Server 2010 Room and Resource mailboxes.]]></description>
			<content:encoded><![CDATA[<p>In the comments of my article about <a href="http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide">Exchange Server 2010 Room mailboxes</a> some readers wanted to know how they can configure the Room mailbox to show more details about existing meetings in the free/busy information that is revealed to other users on the network.</p>
<p>Consider the scenario where a room is booked, and perhaps another person wants to contact existing meeting organizers to ask if they can remove a booking to make room for a more important one, but the free/busy information (as seen in the Outlook Scheduling Assistant) doesn&#8217;t indicate who made the bookings.</p>
<p><img class="aligncenter size-full wp-image-4793" title="exchange-room-mailbox-free-busy-0" src="http://exchangeserverpro.com/wp-content/uploads/2012/05/exchange-room-mailbox-free-busy-01.jpg" alt="" width="280" height="118" /></p>
<p>This is caused by the default permissions on the mailbox&#8217;s calendar. These default permissions are set to show only the availability information (eg free, busy, tentative) but not any other details.</p>
<p>In the calendar permissions (if you were modifying them via Outlook) it would look like this.</p>
<p><img class="aligncenter size-full wp-image-4794" title="exchange-room-mailbox-free-busy-1" src="http://exchangeserverpro.com/wp-content/uploads/2012/05/exchange-room-mailbox-free-busy-1.jpg" alt="" width="391" height="363" /></p>
<p>If viewed in the shell it with <a href="http://technet.microsoft.com/en-us/library/dd335061.aspx">Get-MailboxFolderPermission</a> it would appear like this.</p>
<pre>[PS] C:\&gt;Get-MailboxFolderPermission homeetingroom1:\Calendar

RunspaceId   : 8706cde4-2cb5-4519-9a46-a46fcc0c450c
FolderName   : Calendar
User         : Default
AccessRights : {AvailabilityOnly}
Identity     : Default
IsValid      : True</pre>
<p>If you modified the permissions using Outlook the new permission level of Reviewer would allow other users to see more details about existing meetings.</p>
<p><img class="aligncenter size-full wp-image-4796" title="exchange-room-mailbox-free-busy-2" src="http://exchangeserverpro.com/wp-content/uploads/2012/05/exchange-room-mailbox-free-busy-2.jpg" alt="" width="395" height="366" /></p>
<p>You can apply that same permission in the Exchange Management Shell using the <a href="http://technet.microsoft.com/en-us/library/ff522363.aspx">Set-MailboxFolderPermission</a> cmdlet (note: Set-MailboxFolderPermission modifies an existing entry, whereas <a href="http://technet.microsoft.com/en-us/library/dd298062.aspx">Add-MailboxFolderPermission</a> would be used to add a new entry to the permissions).</p>
<pre>Set-MailboxFolderPermission homeetingroom1:\Calendar -User Default -AccessRights Reviewer</pre>
<p>The results can be seen in the Get-MailboxFolderPermission output.</p>
<pre>[PS] C:\&gt;Get-MailboxFolderPermission homeetingroom1:\Calendar

RunspaceId   : 8706cde4-2cb5-4519-9a46-a46fcc0c450c
FolderName   : Calendar
User         : Default
AccessRights : {Reviewer}
Identity     : Default
IsValid      : True

RunspaceId   : 8706cde4-2cb5-4519-9a46-a46fcc0c450c
FolderName   : Calendar
User         : Anonymous
AccessRights : {None}
Identity     : Anonymous
IsValid      : True</pre>
<p>When creating a new meeting request users are now able to see more details about the meeting organizer.</p>
<p><img class="aligncenter size-full wp-image-4797" title="exchange-room-mailbox-free-busy-3" src="http://exchangeserverpro.com/wp-content/uploads/2012/05/exchange-room-mailbox-free-busy-3.jpg" alt="" width="285" height="128" /></p>
<p>You can modify all the default permissions on Room mailboxes with the following commands in the Exchange Management Shell.</p>
<pre>[PS] C:\&gt;$rooms = Get-Mailbox -RecipientTypeDetails RoomMailbox
[PS] C:\&gt;$rooms | %{Set-MailboxFolderPermission $_":\Calendar" -User Default -AccessRights Reviewer}</pre>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/find-meeting-rooms" title="How to Find Available Meeting Rooms">How to Find Available Meeting Rooms</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide" title="Exchange Server 2010 Room Mailboxes Step by Step Guide">Exchange Server 2010 Room Mailboxes Step by Step Guide</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-restricting-room-mailbox-bookings-to-specific-groups" title="Restricting Room Mailbox Bookings to Specific Groups in Exchange Server 2010">Restricting Room Mailbox Bookings to Specific Groups in Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-2007-room-mailbox-automatically-accepting-bookings" title="Exchange 2007 Room Mailbox Not Automatically Accepting Bookings">Exchange 2007 Room Mailbox Not Automatically Accepting Bookings</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-shared-calendar-permissions-nested-groups" title="Exchange 2010 Shared Calendar Permissions and Nested Groups">Exchange 2010 Shared Calendar Permissions and Nested Groups</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes">Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Exchange Server 2010 Room Mailboxes Step by Step Guide</title>
		<link>http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide</link>
		<comments>http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide#comments</comments>
		<pubDate>Wed, 27 Oct 2010 12:56:18 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Resource Mailboxes]]></category>
		<category><![CDATA[Room Mailboxes]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=2240</guid>
		<description><![CDATA[In this tutorial we'll explore the purpose of a Room Mailbox in Exchange Server 2010, how to create a Room Mailbox, and look at different ways to configure a Room Mailbox to suit different scenarios.]]></description>
			<content:encoded><![CDATA[<p><a href="http://exchangeserverpro.com">Exchange Server 2010</a> has several different types of mailboxes that can be created.  In this tutorial we&#8217;ll explore the purpose of a Room Mailbox in Exchange Server 2010, how to create a Room Mailbox, and look at different ways to configure a Room Mailbox to suit different scenarios.</p>
<h2>Exchange Server 2010 Room Mailbox Overview</h2>
<p>A Room Mailbox is a special type of mailbox that is assigned to a fixed location such as a meeting space, conference room, or training facility.</p>
<p>Room Mailboxes are fundamentally the same as regular User Mailboxes. They consist of a user account in Active Directory and an associated mailbox in Exchange Server 2010.  However when you create a Room Mailbox using Exchange Server 2010 the user account password is generated automatically by Exchange, and the user account is disabled by default so that it can&#8217;t be used for interactive logons.</p>
<p>In addition, the Room Mailbox has extra attributes exposed via the <a title="Exchange 2010 FAQ: How Do I Install the Exchange 2010 Management Tools?" href="http://exchangeserverpro.com/exchange-2010-install-management-tools">Exchange Management Console</a> that can be used for automated processing of bookings and other configurations that suit this type of mailbox.  We&#8217;ll look more closely at these later in this article.</p>
<h2>Creating a New Room Mailbox in Exchange Server 2010</h2>
<p>Open the Exchange Management Console and navigate to <strong>Recipient Configuration -&gt; Mailboxes</strong>, and start the <strong>New Mailbox Wizard</strong>.</p>
<div id="attachment_2242" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2242" title="Exchange Server 2010 New Mailbox Wizard" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-01.png" alt="Exchange Server 2010 New Mailbox Wizard" width="550" height="298" /><p class="wp-caption-text">Exchange Server 2010 New Mailbox Wizard</p></div>
<p>Select <strong>Room Mailbox</strong> as the mailbox type to create.</p>
<div id="attachment_2243" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2243" title="Choose to Create a Room Mailbox" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-02.png" alt="Choose to Create a Room Mailbox" width="550" height="240" /><p class="wp-caption-text">Choose to Create a Room Mailbox</p></div>
<p>Select <strong>New User</strong> to create a new user account for the Room Mailbox.</p>
<div id="attachment_2244" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-2244" title="Choose to Create a New User for the Room Mailbox" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-03.png" alt="Choose to Create a New User for the Room Mailbox" width="480" height="238" /><p class="wp-caption-text">Choose to Create a New User for the Room Mailbox</p></div>
<p>Select an <strong>organizational unit</strong> and fill out the <strong>user information</strong> for the new Room Mailbox.</p>
<div id="attachment_2245" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2245" title="Enter User Information for the New Room Mailbox" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-04.png" alt="Enter User Information for the New Room Mailbox" width="550" height="406" /><p class="wp-caption-text">Enter User Information for the New Room Mailbox</p></div>
<p>Change the <strong>alias</strong> if necessary and complete any of the other optional settings that are required in your environment.</p>
<div id="attachment_2246" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2246" title="Choose an Alias and Configure Optional Settings if required" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-05.png" alt="Choose an Alias and Configure Optional Settings if required" width="550" height="345" /><p class="wp-caption-text">Choose an Alias and Configure Optional Settings if required</p></div>
<p>When you are happy with the settings you&#8217;ve chosen click <strong>New</strong> to create the Room Mailbox.</p>
<div id="attachment_2247" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2247" title="Complete the New Room Mailbox Wizard" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-06.png" alt="Complete the New Room Mailbox Wizard" width="550" height="296" /><p class="wp-caption-text">Complete the New Room Mailbox Wizard</p></div>
<p>Now that the new Room Mailbox has been created you might notice a few things about it.  Firstly, it appears as a different type of mailbox in the Exchange Management Console.</p>
<div id="attachment_2248" class="wp-caption aligncenter" style="width: 590px"><img class="size-full wp-image-2248" title="Exchange Server 2010 Room Mailboxes in Exchange Management Console" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-07.png" alt="Exchange Server 2010 Room Mailboxes in Exchange Management Console" width="580" height="264" /><p class="wp-caption-text">Exchange Server 2010 Room Mailboxes in Exchange Management Console</p></div>
<p>You can also see that the associated user account is disabled.</p>
<div id="attachment_2250" class="wp-caption aligncenter" style="width: 369px"><img class="size-full wp-image-2250" title="Disabled User Account associated with an Exchange Server 2010 Room Mailbox" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-081.png" alt="Disabled User Account associated with an Exchange Server 2010 Room Mailbox" width="359" height="142" /><p class="wp-caption-text">Disabled User Account associated with an Exchange Server 2010 Room Mailbox</p></div>
<p>And the Room Mailbox also appears in the Room Mailboxes address list.</p>
<div id="attachment_2251" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-2251" title="Exchange Server 2010 Room Mailbox Address List" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-create-room-mailbox-09.png" alt="Exchange Server 2010 Room Mailbox Address List" width="550" height="238" /><p class="wp-caption-text">Exchange Server 2010 Room Mailbox Address List</p></div>
<h2>Configuring Exchange Server 2010 Room Mailboxes</h2>
<p>When you open the properties of a Room Mailbox you&#8217;ll notice some additional tabs that do not appear for normal User Mailboxes.</p>
<div id="attachment_2254" class="wp-caption aligncenter" style="width: 454px"><img class="size-full wp-image-2254" title="Exchange Server 2010 Room Mailbox Properties" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-configure-room-mailbox-01.png" alt="Exchange Server 2010 Room Mailbox Properties" width="444" height="290" /><p class="wp-caption-text">Exchange Server 2010 Room Mailbox Properties</p></div>
<p>These additional options let you configure the Room Mailbox in different ways, such as:</p>
<ul>
<li>Whether meeting requests are automatically accepted by the Room Mailbox</li>
<li>How the Room Mailbox handles conflicting appointments</li>
<li>The maximum length of time a meeting can book out the room</li>
<li>How far into the future a room booking can be made</li>
</ul>
<p>These options make sense under different scenarios.  For example:</p>
<ul>
<li>A small, general meeting room is suitable for auto-acceptance of meeting requests, but due to the number of people who may want to use the room only a maximum of 1 hour can be booked at a time</li>
<li>An executive boardroom would not auto-accept room bookings, but instead be managed by an executive assistant to make sure it is always available for meeting with important visitors</li>
<li>A training room would permit all day bookings to faciliate training classes</li>
</ul>
<p>Lets take a closer look at how we would <a href="http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes">configure a Room Mailbox to automatically accept bookings</a>.</p>
<h3>Configure the Room Mailbox Auto-Attendant</h3>
<p>On the <strong>Resource General</strong> tab of the Room Mailbox properties enable the <strong>Resource Booking Attendant</strong> option.</p>
<div id="attachment_2255" class="wp-caption aligncenter" style="width: 454px"><img class="size-full wp-image-2255" title="Enable Room Booking Attendant on Exchange Server 2010 Room Mailboxes" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-configure-room-mailbox-02.png" alt="Enable Room Booking Attendant on Exchange Server 2010 Room Mailboxes" width="444" height="356" /><p class="wp-caption-text">Enable Room Booking Attendant on Exchange Server 2010 Room Mailboxes</p></div>
<p>This can also be performed using the Exchange Management Shell.</p>
<pre>[PS] C:\&gt;Set-CalendarProcessing "Conference Room 1" -AutomateProcessing AutoAccept</pre>
<p>When Alan Reid books the meeting room for an available time he receives an automatic acceptance from the Room Mailbox.</p>
<div id="attachment_2256" class="wp-caption aligncenter" style="width: 590px"><img class="size-full wp-image-2256" title="Exchange Server 2010 Room Mailbox Auto-Acceptance Message" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-configure-room-mailbox-03.png" alt="Exchange Server 2010 Room Mailbox Auto-Acceptance Message" width="580" height="261" /><p class="wp-caption-text">Exchange Server 2010 Room Mailbox Auto-Acceptance Message</p></div>
<h3>Configure the Room Mailbox Delegate</h3>
<p>In this example a delegate is configured who can manage scheduling for the Room Mailbox.  In the <strong>Resource Policy</strong> tab of the mailbox properties click <strong>Add</strong> and select the user who is to become a delegate of the Room Mailbox.</p>
<div id="attachment_2257" class="wp-caption aligncenter" style="width: 454px"><img class="size-full wp-image-2257" title="Exchange Server 2010 Room Mailbox Delegates" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-configure-room-mailbox-04.png" alt="Exchange Server 2010 Room Mailbox Delegates" width="444" height="485" /><p class="wp-caption-text">Exchange Server 2010 Room Mailbox Delegates</p></div>
<p>Delegates also need Editor access to the calendar and free/busy folder of the mailbox itself so that they can manage meeting requests.  There are two ways to achieve this:</p>
<ol>
<li>Grant an administrator Full Access Permissions to the Room Mailbox, open it in Outlook, and edit the Calendar and Mailbox permissions.</li>
<li>Grant the delegate Full Access Permissions to the Room Mailbox</li>
</ol>
<p>In this example I will use option #2.</p>
<pre>[PS] C:\&gt;Add-MailboxPermission -Identity "Conference Room 1" -User Alex.Heyne -AccessRights FullAccess</pre>
<p>The delegate Alex Heyne can now manage room bookings. In this example a meeting is still unconfirmed waiting for Alex to approve or reject it.</p>
<div id="attachment_2259" class="wp-caption aligncenter" style="width: 545px"><img class="size-full wp-image-2259" title="Delegate Management of Room Mailbox Bookings in Exchange Server 2010" src="http://exchangeserverpro.com/wp-content/uploads/2010/10/exchange-2010-configure-room-mailbox-06.png" alt="Delegate Management of Room Mailbox Bookings in Exchange Server 2010" width="535" height="314" /><p class="wp-caption-text">Delegate Management of Room Mailbox Bookings in Exchange Server 2010</p></div>
<p>After Alex approves the meeting the organizer (Alan Reid) receives a message confirming acceptance.</p>
<h2>Summary</h2>
<p>As you can see Room Mailboxes are a very useful feature of Exchange Server 2010 and can be configured to suit any organizational requirement for managing availability and <a href="http://exchangeserverpro.com/find-meeting-rooms">booking meeting requests</a>.</p>
<h2>FAQs and Common Issues</h2>
<p>Q: The problem with Room Resource booking is that you need to invite all rooms to see availability for a meeting. Then, when you have decided upon a time and room, you need to remove the rooms you don’t require.</p>
<p>A: Look at using a <a href="http://exchangeserverpro.com/find-meeting-rooms">Room List</a> to simplify the process of finding available rooms for meetings.</p>
<p>Q: How do you enable other users to see who owns an existing booking in a resource mailbox?</p>
<p>A: Check out <a href="http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes">how to show full free/busy details for room and resource mailboxes</a>.</p>
<p>Q: Can room mailboxes be restricted so that only certain people can send to them?</p>
<p>A: Yes they can. See <a href="http://exchangeserverpro.com/exchange-2010-restricting-room-mailbox-bookings-to-specific-groups">this post</a> for details.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes" title="Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes">Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-restricting-room-mailbox-bookings-to-specific-groups" title="Restricting Room Mailbox Bookings to Specific Groups in Exchange Server 2010">Restricting Room Mailbox Bookings to Specific Groups in Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/find-meeting-rooms" title="How to Find Available Meeting Rooms">How to Find Available Meeting Rooms</a></li><li><a href="http://exchangeserverpro.com/case-hub-transport-server-load-imbalance" title="The Case of the Hub Transport Server Load Imbalance">The Case of the Hub Transport Server Load Imbalance</a></li><li><a href="http://exchangeserverpro.com/announcing-exchange-2010-boot-camp-plus" title="Announcing Exchange 2010 Boot Camp PLUS">Announcing Exchange 2010 Boot Camp PLUS</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide">Exchange Server 2010 Room Mailboxes Step by Step Guide</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-server-2010-room-mailboxes-step-by-step-guide/feed</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>How to Enable AutoAccept on Multiple Exchange 2007 Room Mailboxes</title>
		<link>http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes</link>
		<comments>http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:17:40 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[EMS]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange Management Shell]]></category>
		<category><![CDATA[Resource Mailboxes]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=1044</guid>
		<description><![CDATA[Here is a quick tip on using the Exchange Management Shell to enable Auto Accept on all of your Room Mailboxes with a single command.]]></description>
			<content:encoded><![CDATA[<p>Here is a quick tip on using the Exchange Management Shell to enable Auto Accept on all of your Room Mailboxes with a single command in Exchange Server 2007.</p>
<p>This is useful when you have just created a bunch of new Room Mailboxes for a new environment and want to save time configuring the meeting processing settings.</p>
<pre>get-mailbox | where {$_.RecipientTypeDetails -eq "RoomMailbox"} | Set-MailboxCalendarSettings -AutomateProcessing AutoAccept</pre>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-2007-2010-public-folder-store-inconsistent-state" title="Exchange 2007/2010 Public Folder Store in an Inconsistent State">Exchange 2007/2010 Public Folder Store in an Inconsistent State</a></li><li><a href="http://exchangeserverpro.com/powershell-configuring-settings-multiple-exchange-mailbox-databases" title="PowerShell: Configuring Settings on Multiple Exchange Mailbox Databases">PowerShell: Configuring Settings on Multiple Exchange Mailbox Databases</a></li><li><a href="http://exchangeserverpro.com/browsing-mailbox-databases-in-exchange-2007-and-2010" title="Browsing Mailbox Databases in Exchange 2007 and 2010">Browsing Mailbox Databases in Exchange 2007 and 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2007-transition-script" title="Exchange Server 2007 Transition Script">Exchange Server 2007 Transition Script</a></li><li><a href="http://exchangeserverpro.com/ems-exchange-2007-public-folder-item-count" title="EMS &#8211; Exchange 2007 Public Folder item count">EMS &#8211; Exchange 2007 Public Folder item count</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes">How to Enable AutoAccept on Multiple Exchange 2007 Room Mailboxes</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Exchange Server 2007 Resource Mailboxes</title>
		<link>http://exchangeserverpro.com/exchange-server-2007-resource-mailboxes</link>
		<comments>http://exchangeserverpro.com/exchange-server-2007-resource-mailboxes#comments</comments>
		<pubDate>Wed, 03 Jun 2009 06:20:23 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Resource Mailboxes]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/?p=712</guid>
		<description><![CDATA[Read my three part series about Exchange Server 2007 resource mailboxes.  Learn what they are, how to create Room and Equipment mailboxes, and how to extend the resource schema with custom resource properties to add more detail to your resource mailboxes.]]></description>
			<content:encoded><![CDATA[<p>Over at TheEmailAdmin.com I&#8217;ve written a three part series about Exchange Server 2007 resource mailboxes.  You can read each part by following these links:</p>
<ul>
<li><a href="http://www.theemailadmin.com/2009/05/exchange-server-2007-resource-mailboxes-part-1-room-mailboxes/">Part 1 &#8211; Introduction and Room Mailboxes</a></li>
<li><a href="http://www.theemailadmin.com/2009/05/exchange-server-2007-resource-mailboxes-part-2-equipment-mailboxes/">Part 2 &#8211; Equipment Mailboxes</a></li>
<li><a href="http://www.theemailadmin.com/2009/05/exchange-server-2007-resource-mailboxes-part-3-%E2%80%93-custom-resource-properties/">Part 3 &#8211; Custom Resource Properties</a></li>
</ul>
<p>Enjoy.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/how-to-enable-autoaccept-on-multiple-room-mailboxes" title="How to Enable AutoAccept on Multiple Exchange 2007 Room Mailboxes">How to Enable AutoAccept on Multiple Exchange 2007 Room Mailboxes</a></li><li><a href="http://exchangeserverpro.com/generate-smtp-error-statistics-using-log-parser-and-exchange-server-2010-protocol-logs" title="Generate SMTP Error Statistics using Log Parser and Exchange Server 2010 Protocol Logs">Generate SMTP Error Statistics using Log Parser and Exchange Server 2010 Protocol Logs</a></li><li><a href="http://exchangeserverpro.com/show-full-freebusy-exchange-2010-room-resource-mailboxes" title="Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes">Show Full Free/Busy Details for Exchange Server 2010 Room and Resource Mailboxes</a></li><li><a href="http://exchangeserverpro.com/calculate-hourly-email-traffic-using-message-tracking-log-parser" title="Calculate Hourly Email Traffic using Message Tracking Logs and Log Parser">Calculate Hourly Email Traffic using Message Tracking Logs and Log Parser</a></li><li><a href="http://exchangeserverpro.com/daily-email-traffic-message-tracking-log-parser" title="Calculate Daily Email Traffic using Message Tracking Logs and Log Parser">Calculate Daily Email Traffic using Message Tracking Logs and Log Parser</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-server-2007-resource-mailboxes">Exchange Server 2007 Resource Mailboxes</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-server-2007-resource-mailboxes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

