Nov 08 2023 11:11 AM - edited Nov 08 2023 11:46 AM
Hello,
I have a problem with Room resources appearing in different time zones when adding them as attendees to events.
When I look at the TimeZone of the Room Resource, it says that it is in "Central Time Zone" which is the same time zone that I am in.
We in IT recommend that rooms be added under the room/location section, but it still works to add them as an attendee and it causes some confusion that it is appearing in a different time zone.
Is there a setting I can change to resolve this? The issue does not occur when the room is selected from the "Room or Location" section of the event creator.
Thanks!
Nov 08 2023 11:45 AM
SolutionI believe I've found the cause.
I was able to run this command to see the "WorkingHoursTimeZone" of the room mailbox calendar:
Get-MailboxCalendarConfiguration
This showed me that the rooms are in Pacific Standard Time.
I used the below command to update WorkingHoursTimeZone to central and the issue is no longer occurring.
Set-MailboxCalendarConfiguration -Identity "XXXXXXX" -WorkingHoursTimeZone "Central Standard Time"
Apr 09 2024 07:32 AM
@drbielenberg Thanks for the information, any chance you know why it defaults to this time zone? Is there anywhere we can change this default value other than going in and setting it manually after each room resource is created?
May 31 2024 08:40 AM
@drbielenberg You have no idea how helpful this was! This resolved the issue for me too. Previously I used the command below, but that did not solve the issue. Thank you so much for your help!
Set-MailboxRegionalConfiguration -Identity "XXXXX" -TimeZone "Eastern Standard Time"
Aug 01 2024 08:27 AM
@drbielenberg I am assuming these are Powershell commands but I can't get either one to work. It just tells me they aren't valid cmds.
Aug 01 2024 09:54 AM
@jrowe4349 Hello! You'll need to install and connect to the Exchange Online Module for PowerShell before you can run those commands.
Here is the Microsoft article for that Connect to Exchange Online PowerShell | Microsoft Learn
Nov 08 2023 11:45 AM
SolutionI believe I've found the cause.
I was able to run this command to see the "WorkingHoursTimeZone" of the room mailbox calendar:
Get-MailboxCalendarConfiguration
This showed me that the rooms are in Pacific Standard Time.
I used the below command to update WorkingHoursTimeZone to central and the issue is no longer occurring.
Set-MailboxCalendarConfiguration -Identity "XXXXXXX" -WorkingHoursTimeZone "Central Standard Time"