When you have a lot of conference rooms, equipment or special rooms mailboxes it is hard to list or find available free rooms during a particular time slot. Luckily, Office365 and Outlook 2013/2016 have a special feature called ‘Room Lists’, which enable you to find and schedule a room quickly based on availability and offer suggestions during room reservation.
In simple terms Room List work as distribution groups for conference or other types of rooms.
Use PowerShell to login to Office365:
#Connect to Office365 Import-Module MSOnline $O365Cred = Get-Credential $O365Session = New-PSSession –ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $O365Cred -Authentication Basic -AllowRedirection Import-PSSession $O365Session
Create a room list:
New-DistributionGroup -Name HQ -DisplayName "HQ" –PrimarySmtpAddress [email protected] –RoomList
Add rooms to a list:
Add-DistributionGroupMember –Identity "HQ" -Member [email protected]
Check what Room Lists you have:
Get-DistributionGroup | Where {$_.RecipientTypeDetails -eq "RoomList"} | Format-Table DisplayName,Identity,PrimarySmtpAddress
Check what conference rooms are part of a particular room list:
Get-DistributionGroupMember –Identity "HQ"