15
MAILBOX RESOURCE SETUP
MICROSOFT EXCHANGE SERVER 2010
PERMISSIONS (cont.)
Add Users to Security Group
1
Right click the
Security Group
and click
Properties
.
2
Click the
Members Tab
.
3
Click
Add
.
4
Select the
Users
you wish to add.
5
Click
OK
.
SETUP
Create Room List
1
Create a list of members in a $Members variable by using Get-Mailbox cmdlet. In this scenario,
we have different rooms in different cities.
$Members=Get-Mailbox -Filter {(RecipientTypeDetails -eq “RoomMailbox”)}
2
Create the distribution group by using
New-DistributionGroup
cmdlet with the
$Members
variable
as the value for the
Members
parameter.
New-DistributionGroup -Name “Building 31 Rooms” -RoomList -Members $Members
Creating a
room list
is required to book alternate rooms from BookIT as well as showing schedules for alternate rooms.