When you provision a new Exchange Online mailbox, regardless of where in the world the user is located, Microsoft creates it with a default English-language structure. The user opens Outlook and sees Inbox, Sent Items, Deleted Items, Drafts, and Junk Email.
For a German-speaking employee in Frankfurt, a French-speaking team in Paris, or a Danish-speaking colleague in Copenhagen, this creates immediate friction. They expect Posteingang, Gesendete Elemente, and Gelöschte Elemente in German, or Indbakke, Sendt, and Slettet in Danish, not their English equivalents. Beyond the user-experience inconvenience, this generates a steady stream of helpdesk tickets, slows onboarding, and in regulated environments can create compliance confusion when email archiving policies reference folder names.
Why the Exchange Admin Center Isn’t Enough
The core issue isn’t just the mismatch in language, it’s also the lack of native tooling. If you open the Exchange Admin Center (EAC) and search for a way to set a mailbox’s language or localize its folder names, you’ll come up empty. Microsoft has not surfaced this capability in the GUI. There is no dropdown, no regional settings panel, no “localize folders” checkbox anywhere in the web interface.
This forces administrators to depend on PowerShell for even basic changes. While PowerShell is great for automation and bulk-editing, it introduces complexity for helpdesk teams who may not be comfortable with scripting.
Configuring Mailbox Regional Settings Using PowerShell
PowerShell provides a direct way to configure mailbox regional settings, including language, time zone, and folder localization. The Set-MailboxRegionalConfiguration cmdlet is the key command used for this purpose.
Before proceeding further, connect to the Exchange Online PowerShell module.
Set-MailboxRegionalConfiguration -Identity "Alex Dunphy" -Language da-dk -DateFormat "dd-MM-yyyy" -LocalizeDefaultFolderName This example sets Alex Dunphy’s mailbox language to Danish Denmark, sets the date in the day/month/year format and localizes the default folder names in Danish.
To Configure Mailbox Regional Settings in Bulk
In large organizations, updating mailbox settings individually is neither efficient nor scalable. Instead, administrators use PowerShell to apply configurations in bulk by targeting a specific group of users based on directory attributes such as department, location, or role. This approach ensures consistency across users while significantly reducing manual effort.
The following command demonstrates how bulk configuration works:
Get-Mailbox -ResultSize Unlimited | Where-Object { $_.Department -like "IT" } | Set-MailboxRegionalConfiguration -Language "en-US" -TimeZone "India Standard Time" -LocalizeDefaultFolderName By running this cmdlet, all IT department mailboxes are identified and updated with the required regional settings in bulk.
After applying changes, it is important to confirm that the settings have been successfully implemented. This can be done using the following command:
Get-MailboxRegionalConfiguration -Identity "alexD@contoso.com" -VerifyDefaultFolderNameLanguage | Format-List If the configuration is correct, the property DefaultFolderNameMatchingUserLanguage will return True, indicating that folder names have been properly localized.
Choose EasyEntra as a PowerShell Free Alternative Approach
For teams looking to avoid scripting, EasyEntra offers a simplified, UI-driven approach to managing mailbox regional settings. Instead of running commands, administrators can directly configure language, time zone, and folder localization through a graphical interface. This is especially useful for helpdesk teams, as it removes the dependency on PowerShell knowledge.
Configure Mailbox Regional Settings Using EasyEntra
To configure mailbox regional settings or mailbox folder localization, follow these steps:
- Open the user’s properties and go to the Mailbox tab.
- Select the required language under Regional Settings to update Outlook file menu items, then click OK.
- Restart Outlook for the changes to take effect.
- To localize folders, enable Localize default folders and click OK.
Folder localization is applied immediately.
Additionally, settings can be embedded into user provisioning templates, ensuring that every new mailbox is configured correctly from day one. That means every new user is provisioned with the correct mailbox experience from day one. The ability to instantly trigger folder localization through a simple checkbox further streamlines the process.
Even better, these templates are easy to create and reuse:
- Create a template from an existing user: https://easyentra.com/knowledge-base/how-to/how-to-create-an-easyentra-virtual-user-template/
- Provision a new user from a template in seconds: https://easyentra.com/knowledge-base/how-to/how-to-create-an-easyentra-virtual-user-template/
These two short videos walk you through the full flow: from capturing a perfectly configured user to reusing that setup at scale.
By combining template-based provisioning with one-click folder localization, EasyEntra ensures consistency across your environment while drastically reducing manual effort.