How to install an additional Language Pack - Windows Server 2012
Using Windows Settings
- Press
Win + I
to open the Settings app.
- Go to
Time & Language
>Language
.
- Click on
Add a language
.
- Choose the language you want to install from the list and click
Next
.
- Select the language features you want to install (e.g., language pack, text-to-speech, etc.).
- Click
Install
.
- Right-click the Start button and select
Windows PowerShell (Admin)
.
Powershell
Get-WinUserLanguageList
Powershell
Add-WindowsPackage -Online -PackagePath "C:\LanguagePacks\lp.cab"
Powershell
Set-WinUILanguageOverride -Language "en-US" # Replace "en-US" with your desired language code
Set-WinUserLanguageList en-US -Force
Using DISM (Deployment Image Servicing and Management)
- Right-click the Start button and select
Command Prompt (Admin)
orWindows Terminal (Admin)
.
dism /online /add-package /packagepath:"C:\LanguagePacks\lp.cab"
cmd
dism /online /set-language:<language-code>
dism /online /set-allintl:<language-code>
Restart the Server
powershellRestart-Computer
Open Settings:
Navigate to Time & Language:
Add a Language:
Open PowerShell as Administrator:
List Available Language Packs:
To see the list of available language packs, use the following command:
Add a Language Pack:
To add a language pack, use the
Add-WindowsPackage
cmdlet. First, download the language pack.cab
file from Microsoft's website or from your installation media.For example, if you have the language pack file named
lp.cab
located inC:\LanguagePacks
, you can use the following command:
Set the Language Pack:
After installing the language pack, set it as the default display language:
Open Command Prompt as Administrator:
Add the Language Pack:
Use the
DISM
tool to add the language pack. First, download the language pack.cab
file from Microsoft's website or from your installation media.For example, if you have the language pack file named
lp.cab
located inC:\LanguagePacks
, you can use the following command:
Set the Language Pack:
To set the newly installed language pack as the default, use the following commands:
Replace
<language-code>
with the appropriate language code (e.g.,en-US
for English).
After installing and setting the language pack, it's recommended to restart the server to apply the changes.
Following these steps will help you install and configure a language pack on Windows Server 2022.
0 Comments