Changing the working hours on a room mailbox in Outlook/Exchange

JohnNaguib 80 Reputation points
2024-07-23T15:40:15.43+00:00

I setup a Room resource recipient in Exchange so that users could book the associated conference room. This part works, but when I attempt to view the room's schedule in Scheduling Assistant, the room shows as Out of Office for regular working hours.

User's image

I've tried searching for a solution to this problem and found this other question, but the room does not appear in Recipient Mailboxes, but Recipient Resources and therefore has different settings than those described. I have not found any way to configure working hours for the room in the resource settings, either. How can I either align the Out of Office hours for the room with the rest of the team, or else remove them entirely?

Outlook
Outlook
A family of Microsoft email and calendar products.
3,836 questions
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,524 questions
0 comments No comments
{count} votes

Accepted answer
  1. Bruce Jing-MSFT 4,800 Reputation points Microsoft Vendor
    2024-07-24T06:25:38.6966667+00:00

    Hi,@Adele Vance

    Thanks for posting your question in the Microsoft Q&A forum.

    By default, working hours of resource mailboxes are 8:00 A.M. to 5:00 P.M. Monday through Friday.

    You can refer to this command to check the working hours of this resource mailbox:

    get-MailboxCalendarConfiguration -Identity <PrimartySMTPofRoomResource>

    User's image

    If the working hours for this mailbox is incorrect, you can run the following command to change the time:

    Set-MailboxCalendarConfiguration -Identity <PrimartySMTPofRoomResource>

    -WorkingHoursStartTime 09:00:00 -WorkingHoursEndTime 18:00:00

    User's image

    If my answer is helpful to you, please mark it as the answer so that other users can refer to it. Thank you for your support and understanding.


1 additional answer

Sort by: Most helpful
  1. Andy David - MVP 1.5L Reputation points MVP
    2024-07-23T19:31:40.3433333+00:00
    Set-MailboxCalendarConfiguration -Identity <room> -WorkingHoursStartTime 07:00:00
    ```[https://learn.microsoft.com/en-us/powershell/module/exchange/set-mailboxcalendarconfiguration?view=exchange-ps](https://learn.microsoft.com/en-us/powershell/module/exchange/set-mailboxcalendarconfiguration?view=exchange-ps)
    
    [-WorkingHoursEndTime <TimeSpan>] 
    
    [-WorkingHoursStartTime <TimeSpan>]
    
     [-WorkingHoursTimeZone <ExTimeZoneValue>]
    
    
    0 comments No comments

Your answer

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