Forum Discussion
[RESOLVED] Room Resource - "Room is in a different time zone. Use the Scheduling Assistant"
- 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"
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"
- jrowe4349Aug 01, 2024Copper Contributor
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.
- drbielenbergAug 01, 2024Copper Contributor
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 https://learn.microsoft.com/en-us/powershell/exchange/connect-to-exchange-online-powershell?view=exchange-ps
- ITKevinMay 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"
- mattchappyApr 09, 2024Copper Contributor
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?