Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Microsoft Office / Deploying Microsoft Office Language Packs

March 13, 2024

Deploying Microsoft Office Language Packs

In this article, we’ll look at manual and automated ways to deploy additional language packs and set the default language in Microsoft Office 2019, 2016, and Microsoft 365 Apps for Business (ex. Office 365).

Contents:
  • How to Manually Install and Change Microsoft Office Language
  • Deploy Additional Language Packs with Office Deployment Tool (ODT)
  • Change Language Settings for MS Office with GPO

In Microsoft Office, you can set language preferences in the following separate settings:

  • Editing Language
  • Display Language
  • Help Language
  • Proofing Tools – to check grammar and punctuation

How to Manually Install and Change Microsoft Office Language

If you already have Microsoft Office installed on your computer, you can manually download additional MS Office Language Packs and assign your preferred language.

  1. Open any MS Office application, such as Word, and check the app version and bitness (File -> Account -> About). In this example, it is a 32-bit version of Microsoft Office 2019 with an English UI; Check MS office version and edition
  2. To install additional languages in Office, go to File -> Options -> Languages;
  3. Select the required language from the Add additional editing languages list and click Add;
    Add editing language in Office
  4. Then open this link https://support.microsoft.com/en-us/office/language-accessory-pack-for-microsoft-365-82ee1236-0f9a-45ee-9c72-05b026ee809f. Choose your version of Office, the language you want to add, and download the language pack (32 or 64 bit); Download Microsoft Office language pack
  5. Run the OfficeSetup.exe file that you downloaded. The installation runs in the background. The installer will download and install the language pack files from the Microsoft CDN;
  6. When the language pack installation is complete, set the default display language in your Office app settings;
    How to Change Language of Microsoft Office
  7. Restart Word and check that the interface language has changed.

If you need to use the automation tools (SCCM, Intune, scripts, GPO) to manage language packs and MS Office settings on multiple computers, the manual method is not suitable.

To find out which Office language packs are installed on your computer, use PowerShell to check the following registry parameters.

List installed language packs:

Get-Item "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\LanguageResources\EnabledEditingLanguages"

List installed Office language packs

Find the Office interface language configured in the current user profile:

(Get-ItemProperty HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\LanguageResources).UILanguageTag

Office: check UILanguageTag with PowerShell

Deploy Additional Language Packs with Office Deployment Tool (ODT)

For versions of Microsoft Office 2021/2019/2016 and Office 365 that are distributed using C2R packages, you can use the Office Deployment Tool (ODT) to automate the installation of additional language packs.

Download the ODT and extract it to a local drive. Create an add-language.xml file with the following configuration:

<Configuration>
<Add Version="MatchInstalled">
<Product ID="LanguagePack">
<Language ID="de-de" />
</Product>
</Add>
<Display Level="None" />
</Configuration>
  • Add Version="MatchInstalled" – Indicates that changes need to be made to any Office installed on the computer (it doesn’t matter if it’s Office 2019 or 365)
  • Language ID="de-de" – Name of the language pack to install. You can specify multiple language packs here:
    <Language ID="fr-fr" />
    <Language ID="de-de" />
  • If you want to install the language pack that matches the default language of the Windows interface, change the line to:
    <Language ID="MatchInstalled" />
Find out more about how to install and manage language packs in Windows.

Then change to the directory containing ODT and run the command:

Setup.exe /configure add-language.xml

deploy Microsoft Office language pacj with ODT command

ODT will download and install the specified language pack (German in this example) for your version of MS Office.

For more information, see How to install specific Microsoft Office applications.

If you need to remove one of the installed language packs, use the XML file:

<Configuration>
<Remove>
<Product ID="LanguagePack">
<Language ID="de-de" />
</Product>
</Remove>
</Configuration>

Change Language Settings for MS Office with GPO

You can then use Group Policy to set a default language for MS Office users..

  1. Download and copy the administrative GPO template files for Microsoft Office to the GPO Central store in the Active Directory domain;
  2. Then create a GPO and link it to the target OU with users using the domain GPO Management console (gpmc.msc);
  3. Go to User Configuration -> Policies -> Administrative Templates -> Microsoft Office 2016 -> Language Preferences. Go to the Display Language section and set the default language for the MS Office user interface in the Display menus and dialog boxes in parameter; Set Office Display language with Group Policy
  4. Then set the default input language in the Editing Languages section (Primary Editing Language);
    Office GPO: Primary Editing Language
  5. After updating the client GPO settings, check that the default MS Office interface changes to the language you have set. Note that the current interface and editing language are set by policy.
    Set MS Office interface language via GPO

In Microsoft 365, you can assign a user’s language preferences using the command:

Get-MsolUser -UserPrincipalName maxbak | Set-MsolUser -PreferredLanguage "de-DE"

This will change the language and regional settings for all M365 services except EOL.

If a user is synced to Microsoft 365 from an on-premises Active Directory, you can assign a language to the user by using the preferredLanguage attribute:

Get-ADUser maxbak -Properties PreferredLanguage | Set-ADUser -Replace @{PreferredLanguage = "de-DE"}

0 comment
4
Facebook Twitter Google + Pinterest
Group PoliciesMicrosoft OfficePowerShellWindows 10
previous post
Send Telegram Messages from a PowerShell Script
next post
How to Change Computer Name (Hostname) in Windows

Related Reading

Fix: Signature Button Not Working in Outlook 2019/2016/365

March 11, 2024

Outlook Keeps Asking for Password on Windows

March 17, 2024

Microsoft Office Volume Activation Using KMS Server

February 24, 2025

How to Increase Attachment Size Limit in Outlook

March 15, 2024

Installing an Open Source KMS Server (Vlmcsd) on...

March 13, 2024

Automatic Outlook User Profile Configuration with ZeroConfigExchange

May 21, 2024

Rollback Microsoft Office to an Earlier Version After...

December 10, 2024

Outlook: Your Server Does Not Support the Connection...

March 11, 2024

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Encrypt Any Client-Server App Traffic on Windows with Stunnel

    June 12, 2025
  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Updating List of Trusted Root Certificates in Windows
  • How to Delete Old User Profiles in Windows
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Configure Google Chrome Settings with Group Policy
  • Allow Non-admin Users RDP Access to Windows Server
  • Configuring FSLogix Profile Containers on Windows Server RDS
  • How to Backup and Copy Local Group Policy Settings to Another Computer
Footer Logo

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


Back To Top