Forum Discussion
neil grinnall
Mar 27, 2017Copper Contributor
Room calendar working hours not showing properly in Outlook
Hej guys, Please correct me if I am being crazy but I have an issue with the working hours display when viewing a room mailbox calendar through Outlook. In OWA and the scheduling assistant it's f...
Thom McKiernan
Mar 25, 2019Brass Contributor
neil grinnall We seem to get inconsistent regional settings when we create a resource mailbox as well.
I found I needed to configure the mailbox regional settings but also the mailbox's calendar settings too. You can use something similar to the following PowerShell to configure all room mailboxes at once:
# Add all available resource mailboxes into a variable
$rooms = Get-Mailbox -RecipientTypeDetails RoomMailbox
# Set mailbox Timezone, Language and Date & Time formats to UK
$rooms | ForEach-Object {Set-MailboxRegionalConfiguration $_.alias -TimeZone 'GMT Standard Time' -language 'en-GB' -DateFormat 'dd/MM/yyyy' -TimeFormat 'HH:mm'}
# Update the calendar's working hours start & end time and timezone to our UK corp standard
$rooms | ForEach-Object {Set-MailboxCalendarConfiguration $_.alias -WorkingHoursTimeZone 'GMT Standard Time' -WorkingHoursStartTime '08:00:00' -WorkingHoursEndTime '18:00:00'}
John_G
May 31, 2019Copper Contributor
Just passing through the internet and came upon this thread, you also can do it all on one line. :)
Get-Mailbox -RecipientTypeDetails RoomMailbox | Set-MailboxCalendarConfiguration -WorkingHoursTimeZone 'GMT Standard Time' -WorkingHoursStartTime '08:00:00' -WorkingHoursEndTime '18:00:00'