The easiest way to book a room in Microsoft Outlook is by using the Room Finder, an integrated feature that shows all the available rooms, calendars, and meeting room filters to the user.
Another great option is to use the Scheduling Assistant, which sets up a new meeting within just a few seconds.
But what if the user tries to create a meeting, and the Outlook Room Finder is not showing rooms? Let’s learn the root cause behind this problem so we can fix it promptly.
When a user creates a meeting through the Room Finder Pane, the complete list of rooms should show below the “Choose an Available Room” box in the Options group of the Meeting tab.
Nonetheless, if no room is shown on this list, then this happens due to any of the three following reasons.
When you are checking meeting room availability on Outlook, there are two possible outcomes after clicking on the Room List option:
This means that it might happen that the room simply does not show on Outlook Room Finder because it is not available.
Nevertheless, if you are sure that the room is available and it is still not showing, then it might be due to the following reasons.
Conference rooms might be accidentally hidden from the Global Address List (GAL) of Exchange or Office.
Note that the GAL is a searchable directory used to find and locate mail-enabled objects, such as the room mailbox. Therefore, it is important to prevent the room from being hidden in the GAL so it can appear on the room list.
Rooms must belong to a room list set up by the Microsoft Exchange or Microsoft Office 365 administrator.
If a room hasn’t been properly added to a list, it will not show on the Outlook Client.
If the Room Finder is not showing rooms on the Room List option (even if the rooms are supposed to be available), then fixing this problem is up to the administrator.
Most likely, the admin needs to create a room list and add existing rooms to that list via Exchange Online PowerShell.
If conference rooms are not showing on Microsoft Exchange, the desktop Outlook client, or Microsoft Office 365, then this is what you must do.
Exchange Online PowerShell is an administrative interface used to control and manage different aspects of an organization, including the list of rooms.
As an administrator, you must connect to EOP in order to be able to create a room list. Go to the aforementioned Microsoft website to learn more.
Looking for information on how to connect to Exchange? See our Previous Article.Once you connect to Exchange Online PowerShell, you must run the following command in order to create a Room List:
Command:
New-DistributionGroup -RoomList -Members $Members
Remember to provide a name to the Room List for the New Distribution Group Command to work.
Now that the Room List has been created, it’s time to add existing rooms to the list. To do this, use the following command:
Command:
Add-DistributionGroupMember -Member
Make sure to use the correct Name and Room Mailbox info.
Note: it may take up to 24 hours for your room list to sync with OutlookYou have now created a new Room List and added existing rooms to the list, but now is time to make sure that the rooms are visible in the GAL.
To do this, run this command:
Command:
Get-Mailbox
In this case, you need to make sure that the “HiddenFromAddressListsEnabled” parameter is set to $false. This means that the room will be discoverable on the Room Finder whenever a user creates a new meeting.
Let’s make a quick recap - if conference or meeting rooms are not showing on Outlook’s Room Finder, then you have three options:
This will promptly fix all issues related to rooms not showing on Microsoft Outlook.
Managing Microsoft 365 Groups effectively is crucial for maintaining streamlined communication and collaboration within any organization. As an IT administrator, you might often find yourself needing to update group settings to match evolving business needs or to ensure security policies are adhered to. Fortunately, PowerShell offers a powerful tool for
Aug 28, 2024 5 min readOne of the most useful commands in the Exchange Online PowerShell module is Get-EXORecipient, which enables administrators to query and retrieve recipient objects from Exchange Online. Understanding how to effectively use Get-EXORecipient can significantly enhance your ability to manage and maintain your Exchange Online environment efficiently. In this post, Meeting
Aug 21, 2024 4 min readManaging email in Microsoft Exchange environments requires balancing the need to filter out spam while ensuring important messages are not marked as junk. Fortunately, PowerShell's Set-MailboxJunkEmailConfiguration cmdlet provides administrators with a precise tool to customize junk email settings for individual mailboxes, enhancing the efficiency and reliability of email delivery. In