Exchange 2019 new maibox or resource created with pacific time zone

Aaron Christenson 1 Reputation point
2020-07-31T18:49:41.437+00:00

Every time a mailbox or resource is created the calendar is set to the pacific time zone. Is there a way to default to eastern? I know how to change it after using Exchange Shell set-mailboxcalendarconfiguration, I would like to have new mailboxes or resources created with the eastern time zone.

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,346 questions
{count} votes

3 answers

Sort by: Most helpful
  1. T. Kujala 8,701 Reputation points
    2020-08-01T05:26:03.17+00:00

    Hi @Aaron Christenson ,

    When a mailbox has been created, you could run the following command.

    Set-MailboxRegionalConfiguration -Identity "user@tenant .onmicrosoft.com" -Language 2057 -TimeZone "Pacific Standard Time" -LocalizeDefaultFolderName

    I think you can't set the default time zone settings in the server level.

    0 comments No comments

  2. Manu Philip 16,971 Reputation points MVP
    2020-08-01T08:47:02.823+00:00

    Hi,
    You may change the default time zones of mailboxes created in a specific OU with the cmdlet
    Get-Mailbox -OrganizationalUnit "domain/Users” | Set-MailboxRegionalConfiguration -Language en-GB -DateFormat "dd/mm/yyyy" -TimeFormat "hh:mm" -TimeZone "W. Europe Standard Time"

    0 comments No comments

  3. Lucas Liu-MSFT 6,161 Reputation points
    2020-08-03T05:09:54.687+00:00

    Hi AaronChristenson-3575,

    1. I agree with the above suggestions.
      You could run the following command to modify the regional settings of a mailbox.
      Set-MailboxRegionalConfiguration -Identity <> -Language "en-US" -DateFormat "M/d/yyyy" -TimeZone <> -TimeFormat "h:mm tt"

    For more information:Set-MailboxRegionalConfiguration.
    2. You also could run the following command to set the Time Zone settings for specified OU.

    Get-Mailbox -OrganizationalUnit "domain/Users” | Set-MailboxRegionalConfiguration -Language en-GB -DateFormat "dd/MM/yyyy" -TimeFormat "HH:mm" -TimeZone "<>"  
    

    For more information: How to Change Time Zone settings in an Exchange Server and its User mailboxes in Exchange.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.

    0 comments No comments