Forum Discussion
drbielenberg
Nov 08, 2023Copper Contributor
[RESOLVED] Room Resource - "Room is in a different time zone. Use the Scheduling Assistant"
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 i...
- Nov 08, 2023
I 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"
drbielenberg
Nov 08, 2023Copper Contributor
I 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"
ITKevin
May 31, 2024Copper Contributor
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"