Sign up today and save $20 on your first TRMNL e-ink display
setup guides· 7 min read

Outlook Room Finder Not Showing Rooms? The 5-Minute Fix (and 8 Causes Behind It)

Your Outlook Room Finder has stopped showing rooms. It is one of the most common Exchange tickets in IT support, and it almost never means anything is broken on Microsoft's side. The five-minute fix, the eight underlying causes, and a monthly audit so you do not see this ticket again.

Your Outlook Room Finder has stopped showing rooms, or it never showed any in the first place. You are not alone. It is one of the most common Exchange complaints in IT support tickets, and it almost never means anything is broken on Microsoft's side. In nine cases out of ten the fix takes five minutes once you know what you are looking for.

This is the IT manager's troubleshooting guide. The fast fix first, the eight underlying causes after, and a short audit at the end so you do not have to do this again next quarter.

The 5-minute fix

Try these three steps in order before anything else.

  1. Confirm a room list exists. In Outlook, open a new meeting, click Room Finder, and look at the "Show a room list" dropdown. If the dropdown is empty, no room list exists in your tenant and the rest of Room Finder will never work. Skip to cause 1 below.
  2. Force an address book refresh. Close Outlook. In Outlook (classic), reopen it, then go to File, Account Settings, Download Address Book. Uncheck "Download changes since last Send/Receive" and click OK. On new Outlook or Outlook for Mac, sign out and back in.
  3. Pick a room list. In the meeting window, open Room Finder again and pick a room list from the dropdown. Available rooms should appear.

If rooms still do not show, you have one of the eight specific causes below.

1. No room list has been created in the tenant

This catches more organisations than you would expect, particularly tenants that were set up before Room Finder was rebuilt. Individual room mailboxes exist, but they are not grouped into a room list, which is the object Room Finder actually queries.

Check from PowerShell:

Get-DistributionGroup | Where-Object { $_.RecipientTypeDetails -eq "RoomList" }

If the result is empty, create one:

New-DistributionGroup -Name "London-Rooms" -RoomList
Add-DistributionGroupMember -Identity "London-Rooms" -Member "room.east@yourdomain.com"

Wait up to 24 hours for it to propagate, then retry Room Finder.

2. The room is hidden from the Global Address List

If HiddenFromAddressListsEnabled is set to true on the room mailbox, the room is invisible to Room Finder even when it sits inside a populated room list.

Get-Mailbox "room.east" | Select Name, HiddenFromAddressListsEnabled

If the value is true, set it to false:

Set-Mailbox "room.east" -HiddenFromAddressListsEnabled $false

This is a common side effect of a "clean the GAL" pass that did not whitelist room mailboxes. Worth checking if Room Finder used to work and recently stopped.

3. The room mailbox is too new

A newly created room mailbox can take up to 24 hours to fully sync across Microsoft 365. Address book downloads are also throttled per client, so even if the room is fine in Exchange Online, Outlook may not see it until tomorrow.

If you created the room less than a day ago, give it time. You can speed things up by forcing a Send/Receive in Outlook (classic) or signing out and back in (new Outlook or Mac), but you cannot bypass server-side propagation.

4. Missing attributes for the new Room Finder

The modern Room Finder pane filters by City, Floor, and Capacity. If those attributes are blank on the room mailbox, the room cannot be matched to a filter and may appear missing depending on the user's view.

Set them via PowerShell:

Set-Place -Identity "room.east" -City "London" -Floor 3 -Capacity 8 -Building "HQ"

If Set-Place is not available in your session, you are likely missing the Exchange Online PowerShell V3 module. Install it with Install-Module ExchangeOnlineManagement and reconnect.

5. An outdated Outlook client

Old builds of Outlook (anything before the August 2022 update on Windows, or the 16.62 build on Mac) use the legacy Room Finder, which has a different UI and different bugs. If your tenant has rooms configured for the new Room Finder but the user is on an old client, the rooms can fail to appear or appear in the wrong section.

Check the user's Outlook version under File, Office Account, About Outlook. If it is more than two release waves behind, push an update before troubleshooting further.

6. Mixed Outlook clients on the same user

This one is sneakier. A single user can have classic Outlook, new Outlook, Outlook for Mac, and Outlook on the web all signed in at once. Each has its own cached address book and its own Room Finder implementation. Rooms can appear in one and not another.

Pick a single client to test (we usually pick OWA because it has no local cache), reproduce the issue there, and you have ruled out a cache problem in one step.

7. A stale cached address book

Outlook (classic) downloads the offline address book and serves Room Finder results from it. If the cache is stale, you can have a perfectly healthy room list that simply does not surface in the client.

The fix:

  1. Close Outlook.
  2. Delete the local OAB folder. On Windows, this lives at %LocalAppData%\Microsoft\Outlook\Offline Address Books. You can delete the whole folder safely.
  3. Reopen Outlook, then Send/Receive, Download Address Book, OK.
  4. Restart Outlook one more time.

8. Permissions on the room mailbox

The least common cause, but worth checking if the previous seven did not solve it. If the room mailbox has unusual CalendarProcessing settings, particularly AllowConflicts set to true or BookInPolicy restricted to a small group, the room can be available in name but not bookable by the meeting organiser. In some Outlook builds that also hides it from Room Finder.

Sanity check:

Get-CalendarProcessing "room.east" | Select AllowConflicts, BookInPolicy, AllBookInPolicy

For a standard internal room, AllBookInPolicy should be true and BookInPolicy empty. If BookInPolicy contains a list, you are inheriting an old restriction.

The 10-minute monthly audit

Most "Room Finder is broken again" tickets are a small number of recurring root causes. Run this once a month and you will catch them before users do.

  • Confirm every site has at least one populated room list.
  • Run the GAL-hidden check across all room mailboxes.
  • Confirm City, Floor, Capacity and Building are populated on every room.
  • Check that your Outlook deployment is no more than one release wave behind.
  • Spot-check a freshly created room from a random user account.

The same room list and Place metadata you have just fixed is what a display for Microsoft 365 rooms reads to show what is booked on the door. Get it right once and both problems stay fixed.

TL;DR

Outlook Room Finder almost always fails for the same handful of reasons: no room list in the tenant, the room hidden from the GAL, a new mailbox that has not synced yet, missing City and Floor metadata, an outdated client, mixed clients on one user, a stale OAB cache, or unusual CalendarProcessing settings. In most cases the five-minute fix is: confirm the room list exists, force an address book refresh, and pick a room list from the dropdown.

If you have done all that and rooms still do not show, the problem is almost certainly cause 1 or cause 4. Run the PowerShell checks for those two first.

Sources

Try Lobby — free forever up to 3 displays

Room booking that just works.

Get started →