Zach Butler’s Blog

Just another IT Management weblog

Adding Additional Properties to Resource Mailboxes – Exchange 2010

with 2 comments

Create a new Resource Mailbox by using the Exchange Management Console. Right click the new resource mailbox and choose properties. On the Resource General tab, notice there are not any custom properties. 

Resource Properties

To add custom properties, open the Exchange Management Shell. We will be adding properties for the following custom entries.

Custom Room Properties AV, TV, Whiteboard, Projector, and WIFI                                          

Custom Equipment Properties Car, Van

$ResourceConfiguration = Get-ResourceConfig

$ResourceConfiguration.ResourcePropertySchema+=("Room/AV")
$ResourceConfiguration.ResourcePropertySchema+=("Room/TV")
$ResourceConfiguration.ResourcePropertySchema+=("Room/Whiteboard")

$ResourceConfiguration.ResourcePropertySchema+=("Room/Projector")

$ResourceConfiguration.ResourcePropertySchema+=("Equipment/Car")
$ResourceConfiguration.ResourcePropertySchema+=("Equipment/Van")

Set-ResourceConfig -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema

 EMSResourceConfiguration

Go back to the Exchange Management Console and the properties of the conference room that was created earlier. On the Resource General tab click the add button.

Resource Properties

Select the appropriate properties for this resource.

SelectResourceCustomProperty

Click OK.

ConferenceRoomProperties

Users can now see these properties in the Address Book when they are booking the resource for their meetings. Make sure to select ALL Rooms from the drop down list.

AddressBookAllRooms

AllRoomsResourceProperties

 

Written by Zach Butler

March 17, 2010 at 4:39 am

2 Responses

Subscribe to comments with RSS.

  1. […] a comment » After creating the Custom Resource Mailbox Properties that I showed in a previous blog, users need to open the address book and select the All Rooms […]

  2. Awesome post, this was the only post that was able to help me configure the resource custom properties. Thank you so much!!!!

    Shelley

    January 8, 2013 at 10:12 pm


Leave a comment