ConfigureBeginnerTutorialsUpdated July 19, 2026

How to Change the Mailbox Language in Outlook

Learn how to change the mailbox language in Outlook, both through Outlook on the web settings and with the Set-MailboxRegionalConfiguration PowerShell cmdlet. Covers renaming default folders, date/time formats, and verifying the change.

Emanuel De Almeida July 23, 2026 7 min read
Difficulty
Beginner
Time
5 minutes
Steps
5
Last tested
July 19, 2026

The mailbox language controls the display language and the names of default folders like Inbox, Sent Items, and Deleted Items. When a mailbox is created in one language but the user prefers another, folder names appear in the wrong language.

Per Microsoft Learn, users can change their own mailbox language in Outlook on the web. Administrators can change it for any mailbox using the Set-MailboxRegionalConfiguration cmdlet in Exchange Online PowerShell, including renaming the default folders and setting date/time formats.

This tutorial covers both the self-service OWA method and the PowerShell method, plus how to verify the change. Note that the mailbox language is separate from the desktop Outlook interface language, which is set in Office language options.

Before you start

What you will learn

  • You'll learn how to change the mailbox language in Outlook using Outlook on the web (self-service) and Set-MailboxRegionalConfiguration (admin), including renaming default folders.
  • When a mailbox language doesn't match the user's preference, folder names appear in the wrong language, causing confusion. Per Microsoft Learn, changing the mailbox language with folder localization fixes this.

Requirements

  • Outlook on the web (self-service) or Exchange Online PowerShell (admin, for other users).
  • Mailbox owner (self) or Exchange Administrator (others)

Good to know

  • 5 minutes

Quick answer

In Outlook on the web, go to Settings > General > Language and time, change the Language, and check 'Rename default folders so their names match the specified language'. Save and exit OWA. Administrators can use Set-MailboxRegionalConfiguration -Language <code> -LocalizeDefaultFolderName for any mailbox.

OWA: Settings > General > Language and time
Code
Set-MailboxRegionalConfiguration -Identity "user@contoso.com" -Language en-US -LocalizeDefaultFolderName

Step-by-step tutorial

5 steps
1

Open Language Settings in OWA

Open the language settings in Outlook on the web.

Outlook on the web > Settings > General > Language and time

Sign in to Outlook on the web (outlook.office.com). Click the Settings gear icon in the top-right. Go to General > Language and time.

This is the self-service method that lets any user change their own mailbox language.

Expected resultThe Language and time settings page opens.

This changes the mailbox (OWA) language. The desktop Outlook interface language is set separately in Office language options.

2

Change the Language and Rename Folders

Change the language and rename default folders.

In the Language and time settings:

  1. Select your preferred Language from the list.
  2. Check Rename default folders so their names match the specified language.
  3. Select your preferred date format and time format.
  4. Click Save.
  5. Exit Outlook on the web.

Per Microsoft, if your preferred language is already selected but folders are wrong, select a different language, save, revert to your language, and save again.

Expected resultThe language is set and default folders are renamed to match.

The rename checkbox is what updates Inbox, Sent Items, and other default folder names. Without it, only the display language changes.

3

Change the Language via PowerShell (Admin)

Change the language for a mailbox using PowerShell (admin method).

For administrators changing another user's mailbox, connect to Exchange Online PowerShell and run:

ps
Connect-ExchangeOnline
Set-MailboxRegionalConfiguration -Identity "user@contoso.com" -Language en-US -LocalizeDefaultFolderName -DateFormat "MM/dd/yyyy" -TimeFormat "h:mm tt"

Replace the identity, language code (e.g., en-US, fr-FR, de-DE), and formats. The -LocalizeDefaultFolderName switch renames the default folders.

PowerShell
Connect-ExchangeOnline
Set-MailboxRegionalConfiguration -Identity "user@contoso.com" -Language en-US -LocalizeDefaultFolderName -DateFormat "MM/dd/yyyy" -TimeFormat "h:mm tt"
Expected resultThe command completes with no errors. The mailbox language and folders update.

Per Microsoft, if you get an invalid DateFormat error, set -DateFormat $null and -TimeFormat $null when changing the Language.

4

Change Language in Bulk (Optional)

Optionally change the language for all mailboxes in bulk.

To change the language for all user mailboxes at once:

ps
Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxRegionalConfiguration -Language en-US -LocalizeDefaultFolderName

This pipes all user mailboxes to Set-MailboxRegionalConfiguration. Test on a single mailbox first before running in bulk.

PowerShell
Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxRegionalConfiguration -Language en-US -LocalizeDefaultFolderName
Expected resultAll user mailboxes are updated to the specified language.

Bulk changes affect every user. Communicate the change and test thoroughly before applying organization-wide.

5

Verify the Change

Confirm the language change applied correctly.

Verify the change with the -VerifyDefaultFolderNameLanguage switch:

ps
Get-MailboxRegionalConfiguration -Identity "user@contoso.com" -VerifyDefaultFolderNameLanguage | Format-List Language,DefaultFolderNameMatchingUserLanguage

Per Microsoft Learn, you must use the -VerifyDefaultFolderNameLanguage switch, or DefaultFolderNameMatchingUserLanguage always returns False.

PowerShell
Get-MailboxRegionalConfiguration -Identity "user@contoso.com" -VerifyDefaultFolderNameLanguage | Format-List Language,DefaultFolderNameMatchingUserLanguage
Expected resultLanguage shows the new language. DefaultFolderNameMatchingUserLanguage shows True.

Restart Outlook after the change so the client picks up the new folder names.

Verify the Language Change

After changing the language with folder localization, the default folder names (Inbox, Sent Items, Deleted Items) appear in the new language. Per Microsoft Learn, verify the change with:

Get-MailboxRegionalConfiguration -Identity <mailbox> -VerifyDefaultFolderNameLanguage | Format-List

The important properties are Language and DefaultFolderNameMatchingUserLanguage. Note that without the -VerifyDefaultFolderNameLanguage switch, DefaultFolderNameMatchingUserLanguage always returns False even when the folders match.

If folder names don't update, ensure -LocalizeDefaultFolderName was used and restart the Outlook client. Per Microsoft, if the preferred language is already selected, toggle to another language, save, then revert and save again to force the refresh.

  • The mailbox language and default folder names match the new language. Verification returns True.
  • Folder names remain in the old language. The LocalizeDefaultFolderName switch wasn't used, or the change needs a client restart.
  • The language and folders are correct.
  • Folders weren't localized.

Troubleshooting

Folder names didn't change to the new language

Cause: The -LocalizeDefaultFolderName switch wasn't used, or the OWA rename checkbox wasn't selected.

Re-run with -LocalizeDefaultFolderName (PowerShell) or check the rename box in OWA. Restart Outlook to refresh folder names.

Invalid DateFormat error when changing language

Cause: The old date/time format is invalid in the new language.

Per Microsoft Learn, set -DateFormat $null and -TimeFormat $null when changing the Language, or specify a format valid for the new language.

Desktop Outlook menus still in the old language

Cause: The desktop Outlook interface language is separate from the mailbox language.

Change the desktop app language in File > Options > Language (Office language settings). This is independent of the mailbox regional configuration.

Frequently asked questions

Can I change my own mailbox language?

Yes. In Outlook on the web, go to Settings > General > Language and time, change the Language, and check the box to rename default folders. Desktop Outlook language is set separately in Office language options.

What does LocalizeDefaultFolderName do?

Per Microsoft Learn, the -LocalizeDefaultFolderName switch renames the default folders (Inbox, Sent Items, Deleted Items) to match the specified language. Without it, only new folders use the language.

How do I verify the language change?

Per Microsoft Learn, use Get-MailboxRegionalConfiguration with the -VerifyDefaultFolderNameLanguage switch. Without it, DefaultFolderNameMatchingUserLanguage always returns False even when correct.

Why do I get a DateFormat error?

Per Microsoft Learn, when changing the Language you may need to set -DateFormat $null and -TimeFormat $null to avoid an invalid DateFormat error, since the old format may not be valid in the new language.

This didn't change my desktop Outlook menus. Why?

The mailbox language is separate from the desktop Outlook UI language. Change the desktop app language in File > Options > Language (Office language settings).

Reader reviews

Rate this articleBe the first to rate
No written reviews yetRate the article above, or be the first to share your experience.

Related articles