Share via

RoomBusy When They Are Actually Available

pariyanto 20 Reputation points
2026-02-18T04:52:24.6366667+00:00

hi..

when i create new book meeting with microsoft teams, and choose rooms, it show up as busy

but when i create meeting with outlook it show up as free.. anyone know for this issue ? and how to fix it.

Exchange Online
Exchange Online

A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.

0 comments No comments

Answer accepted by question author

Anonymous
2026-02-18T08:06:21.5966667+00:00

Hi @pariyanto

Thank you for posting your question in the Q&A Forum. 

The behavior where a room shows Busy in Teams but Free in Outlook usually indicates that the two clients are interpreting free/busy data differently. This is often caused by cached data or specific room mailbox configurations.

To help narrow this down, please try the following steps:

1. Test with Teams Web first

Please try scheduling the same room using:
https://teams.microsoft.com

  • If the room appears FREE on Teams Web:
    The issue is likely due to cached data in the Teams Desktop Client.
  • If the room appears BUSY on Teams Web:
    The issue is likely related to the Room Mailbox settings on the server side.

2. Verify the room calendar directly

Open the room mailbox calendar in Outlook (Open Shared Calendar) and check whether:

  • There are hidden or recurring events blocking the slot
  • Any tentative or auto‑accepted meetings exist

Sometimes these do not show clearly in the Teams scheduling pane.

3. Review Room Mailbox Booking Settings

If you have Admin access, please check the Calendar Processing settings via PowerShell:

Get-CalendarProcessing -Identity "<room_mailbox_email>"

Key fields to look at:

  • AutomateProcessing
  • AllowConflicts
  • BookingWindowInDays
  • WorkingHoursStartTime / WorkingHoursEndTime / WorkingHoursTimeZone

Incorrect working hours or mismatched time zone can cause Teams to interpret the room as unavailable while Outlook still shows it as free.

If the issue continues after these steps, please share the results and we will assist you further.


If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".    

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.

Was this answer helpful?

1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. AI answer

    2026-02-18T04:52:41.4866667+00:00

    The issue you are experiencing, where a room appears as busy in Microsoft Teams but free in Outlook, may be related to the calendar settings for the room mailbox. Specifically, it could be due to invalid settings for the working hours of the room mailbox, which can affect how availability is displayed across different platforms.

    To troubleshoot and resolve this issue, you can check the calendar settings for the room mailbox using PowerShell. Here are the steps:

    1. Run the following PowerShell cmdlet to check the calendar settings of the room mailbox:
         Get-DistributionGroupMember -Identity <room list name> | Get-MailboxCalendarConfiguration | FL Identity,WorkingHours*
      
    2. Look for any discrepancies in the WorkingHoursStartTime, WorkingHoursEndTime, and WorkingHoursTimeZone settings. Ensure that the start time is less than or equal to the end time and that the time zone is set correctly.
    3. If you find any invalid settings, you can correct them using the following cmdlet:
         Set-MailboxCalendarConfiguration -Identity <room ID> -WorkingHoursStartTime <start time> -WorkingHoursEndTime <end time> -WorkingHoursTimeZone <time zone>
      

    By ensuring that the working hours are correctly configured, you should be able to resolve the discrepancy in availability status between Microsoft Teams and Outlook.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.