Introduction
The purpose of this Knowledge Base (KB) article is to walk through the setup of Room Distribution Lists (RDL) to work with the Vyopta Workspace Insights.
Room Distribution Lists are different to O365 Groups. O365 Groups will NOT work.
Prerequisites:
The prerequisites to creating Room Distribution Lists are:
- Exchange Admin Rights
- Powershell with the ExchangeOnlineManagement Module if using Office 365.
Instructions:
1. Connecting to O365 Exchange Server:
Connect-ExchangeOnline -UserPrincipalName <Email Address>
2. Now that the connection is established, we need to create the RDL by performing the following powershell command:
New-DistributionGroup -Name "Vyopta Rooms" -PrimarySmtpAddress "VyoptaRooms@example.com" -RoomList
The parameters:
-Name
The name you choose for your RDL - Must be unique
-PrimarySmtpAddress
The SMTP address for the room distribution list being created.
-RoomList
The RoomList parameter specifies that all the members in this list are room mailboxes. There is no value to put in, it's a switch.
3. The room mailboxes can now be added to the RDL.
To add a single room at a time, the following powershell command can be used:
Add-DistributionGroupMember -Identity "Vyopta Rooms" -Member "Room1"
The parameters:
-Identity
The Identity parameter is the name of the RDL configured above
-Member
The Member parameter is the name of the Room Mailbox we are adding
To add all the Room Mailboxes, the following powershell command can be used:
$Members=Get-Mailbox -Filter {(RecipientTypeDetails -eq "RoomMailbox")}
foreach ($member in $Members) { Add-DistributionGroupMember -Identity "Vyopta Rooms" -Member $member.Alias }
4. To verify the rooms are in the RDL, we can check what rooms are associated to that RDL group by running the following powershell command:
Get-DistributionGroupMember -Identity "Vyopta Rooms" | ft Name, PrimarySMTPAddress -AutoSize
Converting A Distribution List to become a Room Distribution List
Let's say you created a distribution list already, and want to use that for Workspace Insights. Microsoft allows you to convert the DL to a RDL easily. The requirement for the DL is to have only Room Mailboxes.
Once verified that the DL has no user mailboxes the following powershell command can be run:
Set-DistributionGroup -Identity "Vyopta Rooms" -RoomList
Comments
Please sign in to leave a comment.