Commands › Exchange Online
Set-MailboxRegionalConfiguration
Modify the regional settings of a mailbox. You can modify the date format, time format, time zone and language of the mailbox.
Quick start script
# Set-MailboxRegionalConfiguration — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-MailboxRegionalConfiguration
$before | Format-List
# 3. Make the change (dry run first)
Set-MailboxRegionalConfiguration -Identity <MailboxIdParameter> -WhatIf
Set-MailboxRegionalConfiguration -Identity <MailboxIdParameter>
# 4. Verify and diff
$after = Get-MailboxRegionalConfiguration
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax — 3 parameter sets
Default
Set-MailboxRegionalConfiguration [-Identity] <MailboxIdParameter> [-DomainController <Fqdn>]
[-Confirm]
[-DateFormat <String>]
[-Language <CultureInfo>]
[-LocalizeDefaultFolderName]
[-TimeFormat <String>]
[-TimeZone <ExTimeZoneValue>]
[-WhatIf]
[<CommonParameters>]
Identity
Set-MailboxRegionalConfiguration [-Identity] <MailboxIdParameter> [-Archive] [-UseCustomRouting]
[-Confirm]
[-DateFormat <String>]
[-Language <CultureInfo>]
[-LocalizeDefaultFolderName]
[-TimeFormat <String>]
[-TimeZone <ExTimeZoneValue>]
[-WhatIf]
[<CommonParameters>]
MailboxLocation
Set-MailboxRegionalConfiguration [-MailboxLocation <MailboxLocationIdParameter>] [-UseCustomRouting]
[-Confirm]
[-DateFormat <String>]
[-Language <CultureInfo>]
[-LocalizeDefaultFolderName]
[-TimeFormat <String>]
[-TimeZone <ExTimeZoneValue>]
[-WhatIf]
[<CommonParameters>]
Parameters (12)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.