Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Office 365 / Regional Mailbox Settings (Language, TimeZone) in Outlook, Exchange, and Microsoft 365

April 27, 2022 AzureExchangeMicrosoft 365Office 365OutlookPowerShell

Regional Mailbox Settings (Language, TimeZone) in Outlook, Exchange, and Microsoft 365

You can use different regional settings for user mailboxes in on-prem Exchange and Exchange Online (Microsoft 365). The mailbox regional settings define the time and date format, time zone, language settings, and mailbox folder names. In this article, we’ll show how to manage regional mailbox settings in on-premises Exchange and Microsoft 365 using Outlook Web Access and PowerShell.

Outlook sets the language settings of the mailbox on first connection to match the localization settings of the Windows user profile. If for the first time a user has accessed their mailbox from an English Windows version (or from an OS with English localization settings), the names of the default mailbox folders will be displayed in English. If you are connected to your mailbox from Windows with German localization, you will see in Outlook the folder “Posteingang” instead of the “Inbox”, “Postausgang” instead of “Sent Items”, etc. Outlook doesn’t allow to change mailbox folder names later.

default folder names in outlook

Change the Default Folder Name Language Using Outlook Web Access

Suppose, a user sees the English names of the default Outlook folders and wants to change them to Deutsch. To do it, the user must use a browser to log in to their mailbox using Outlook Web Access.

In OWA, go to Options -> General -> Region and time zone. Set the regional options you want in the form that appears: select the interface language (I have changed it to Deutsch), time zone and time/date format. If you want to rename default Outlook folders according to your new language settings, check the option Rename default folder so their names match the specified language.

Click Save.

Outlook Web Access - Rename default folder so their names match the specified language

Then refresh the OWA page and make sure that the names of default Outlook folders and the mailbox interface have been changed to Deutsch.

How to change the Outlook display language of main folders?

In Outlook 365, you can change the mailbox language and default folders names via Settings -> General -> Language and time.

Exchange online - set default folder names match the language in Office 365

How to Configure Mailbox Regional Settings Using PowerShell?

In on-prem Exchange or Microsoft 365 (Exchange Online) tenant, you can manage mailbox regional settings using PowerShell.

Connect to your on-prem Exchange server or Microsoft 365 tenant using PowerShell.

The following commands are used to connect to Exchange Online:

$365Cred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $365Cred -Authentication Basic -AllowRedirection
Import-PSSession $Session

If the MFA is enabled for your account, use the Exchange Online PowerShell V2 (EXO V2) module to connect:

Connect-ExchangeOnline -UserPrincipalName [email protected] -ShowProgress $true

To display mailbox regional settings, run this command:

Get-MailboxRegionalConfiguration -Identity [email protected]

Get-MailboxRegionalConfiguration

The Get-MailboxRegionalConfiguration and Set-MailboxRegionalConfiguration cmdlets work both in Exchange Server 2013, 2016, 2019, and Microsoft 365.

To change the language of default Outlook folders to English and set a time zone to US East (UTC-05:00), run the command below:

Get-Mailbox [email protected] | Set-MailboxRegionalConfiguration -LocalizeDefaultFolderName:$true -Language "en-US" -TimeZone "US Eastern Standard Time"

You can display the list of available time zones in Windows as follows:

Get-TimeZone -ListAvailable

If you only want to rename default Outlook folders from English to German, run this command:

Get-Mailbox [email protected] | Set-MailboxRegionalConfiguration -LocalizeDefaultFolderName:$true -Language "de-DE" –DateFormat “yyyy-MM-dd” –TimeFormat “HH:mm”

The default Outlook folder names change immediately.

If you change the mailbox language, you can also specify a new date and time format. If the date and time format does not match the language, the following error appears:

DateFormat "M/d/yyyy" isn't valid for current language setting "de-DE". Valid formats include "dd.MM.yyyy, dd.MM.yy, d.M.yy, dd/MM/yy, yyyy-MM-dd"

or

The TimeFormat "h:mm tt" isn't valid for current language setting "de-DE". Valid formats include "H:mm, HH:mm".

If you don’t want to set date/time format manually, you can use the default format for the selected language using the following Set-MailboxRegionalConfiguration options:
-DateFormat $null -TimeFormat $null

You can change regional settings for all mailboxes on the Exchange server at once:

Get-Mailbox -Server be-msg01 -ResultSize unlimited -Filter {RecipientTypeDetails -eq 'UserMailbox'} | Set-MailboxRegionalConfiguration -TimeZone "Central Europe Standard Time" -LocalizeDefaultFolderName:$true -Language "en-gb"

How to Reset Names of Default Mailbox Folders with Outlook?

If a user mailbox is empty or new language settings have been applied to it without renaming the folders, you can reset the names of default folders of an Exchange mailbox using Outlook. To do it, you must set the corresponding Windows regional setting in your profile and start Outlook with the ResetFolderNames option:

outlook.exe /resetfoldernames

At the next Outlook startup, the folder names will be displayed in new language.

If the first command didn’t help (it depends on the Outlook version), try to run this command:

outlook.exe /resetfolders

0 comment
2
Facebook Twitter Google + Pinterest
previous post
How to Convert (Upgrade) Windows Server 2019/2016 Evaluation to Full Version?
next post
How to Download APPX File from Microsoft Store for Offline Installation?

Related Reading

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

October 15, 2023

How to Query and Change Teams User Presence...

October 8, 2023

Installing Language Pack in Windows 10/11 with PowerShell

September 15, 2023

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023
  • How to Use Ansible to Manage Windows Machines

    September 25, 2023
  • Installing Language Pack in Windows 10/11 with PowerShell

    September 15, 2023
  • Configure Email Forwarding for Mailbox on Exchange Server/Microsoft 365

    September 14, 2023
  • How to View and Change BIOS (UEFI) Settings with PowerShell

    September 13, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Checking User Sign-in Logs in Azure AD (Microsoft 365)
  • Whitelist Domains and Email Addresses on Exchange Server and Microsoft 365
  • Using Microsoft Graph API to Access Azure via PowerShell
  • How to Reset User Password in Azure Active Directory (Microsoft 365)
  • Enable or Disable MFA for Users in Azure/Microsoft 365
  • Enabling Modern or Basic Authentication for Microsoft 365
  • Get User or Group Creation Date in Azure AD (or MS365) with PowerShell
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top