logo
search
Calendar Problems

How to Set the Default Time Zone for New Exchange Shared Mailboxes

Maira MehtabMaira Mehtab Sep 22, 2026 869 views

Question details

The administrator needs to configure newly created Exchange shared mailboxes to use a consistent default time zone (e.g., Greenwich Mean Time) instead of the default Pacific Time.

Product
Microsoft Exchange / Microsoft 365
Device & OS
not provided
Scenario
Creating new shared mailboxes for an organization and ensuring their calendar settings align with the local time zone.
Observed behavior
New shared mailboxes default to Pacific Time instead of the organization's preferred time zone, and there is no visible option in the Exchange Admin Center to change this default behavior.
Before you start

Ensure you have Exchange Administrator permissions in your Microsoft 365 tenant and have the Exchange Online PowerShell module installed on your computer.

Solution 1Recommended

Configure Shared Mailbox Time Zone via PowerShell

Since there is no direct graphical option in the Microsoft 365 or Exchange admin centers, administrators must use PowerShell cmdlets to define the time zone for shared mailboxes.

User mailboxes often apply regional settings automatically when a user signs in for the first time. Because shared mailboxes do not have direct interactive logins, they bypass this prompt and fall back to the tenant's default (often Pacific Time). You must configure them post-creation using PowerShell.

1
Connect to Exchange Online

Open PowerShell as an administrator on your computer and run the 'Connect-ExchangeOnline' cmdlet to authenticate with your Microsoft 365 administrator credentials.

2
Set the mailbox time zone

Execute the 'Set-MailboxCalendarConfiguration' cmdlet to specify the desired time zone. Type the command: Set-MailboxCalendarConfiguration -Identity "sharedmailbox@yourdomain.com" -WorkingHoursTimeZone "Greenwich Standard Time" and press Enter.

3
Automate for future mailboxes

To maintain consistency, write a PowerShell script that periodically searches for newly created shared mailboxes and automatically applies the Set-MailboxCalendarConfiguration cmdlet to them.

Valid Time Zone Strings: Make sure to use the exact time zone string recognized by Microsoft Exchange (e.g., 'Greenwich Standard Time' or 'Pacific Standard Time'). Incorrectly formatted names will result in a PowerShell error.
Free Microsoft Office alternative

Looking for a Lightweight and Cost-Effective Office Suite?

While complex server-side configurations like Exchange time zones require Microsoft tools, your daily document tasks shouldn't be overly complicated or expensive. WPS Office provides a free, fast, and highly compatible alternative to Microsoft Office for all your word processing, spreadsheet, and presentation needs.

Fully compatible with Microsoft Office formats (.docx, .xlsx, .pptx).Free and lightweight, consuming minimal system resources.Familiar user interface requiring no steep learning curve.Built-in PDF editing tools for comprehensive document management.Seamless migration for individuals and small businesses.
microsoft office alternative - wps office

Frequently Asked Questions

Why do new shared mailboxes default to Pacific Time?

In Microsoft 365, backend servers and tenant-level settings often default to Pacific Time. Because shared mailboxes do not prompt for regional setup via an initial web login like user accounts do, they simply inherit this default server configuration.

Can I set the shared mailbox time zone from the Microsoft 365 admin center?

No. Currently, Microsoft does not provide a direct graphical interface option in the Microsoft 365 admin center or the Exchange Admin Center to set or change the default time zone for shared mailboxes.

Does updating the time zone change existing calendar events?

Changing the time zone configuration via PowerShell will adjust the baseline time zone for that shared calendar. Events will automatically display in the correct localized time for users accessing the calendar based on their own client settings.