A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
Hi @Robert Szøke
When a new room is added or its location metadata (Building/Floor) is updated, several dependencies must be checked to ensure it displays properly in Outlook:
1.Confirm the room is in a Room List (required for visibility)
Get-DistributionGroup -RecipientTypeDetails RoomList
Get-DistributionGroupMember "Room List Name"
2.Verify Building and Floor settings: These must be set using Set-Place:
Get-Place room(at)domain.com | fl Building,Floor
If needed, set it explicitly:
Set-Place -Identity room(at)domain.com -Building "Your Building" -Floor 3
3.Check if the room is hidden
Get-Mailbox room(at)domain.com | fl HiddenFromAddressListsEnabled
This value should be False.
Even when all configurations are correct, updates are not immediate. It can take more than 48 hours for changes to appear in Outlook, as noted in this thread Room finder option in Outlook is empty - Microsoft Q&A.
Please let me know the results after running these scripts.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.