Hi,
Windows has System and User language settings. They are independed.
Use dism to get a list of all installed languages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | D:\> dism /online /Get-IntlDeployment Image Servicing and Management toolVersion: 10.0.19041.572Image Version: 10.0.19041.630Reporting online international settings.Default system UI language : en-USSystem locale : de-DEDefault time zone : W. Europe Standard TimeActive keyboard(s) : 0407:00000407Keyboard layered driver : PC/AT Enhanced Keyboard (101/102-Key)Installed language(s): de-DE Type : Partially localized language, MUI type. Fallback Languages en-USInstalled language(s): en-US Type : Fully localized language.The operation completed successfully. |
To set the Systemlanguage use the Set-WinSystemLocale coammnd-let. For example
1 | PS D:\> Set-WinSystemLocale de-DE |
Set the language for the User. Set-WinUserLanguageList sets the include input method, spelling-, text prediction-, and handwriting settings.
1 2 | PS D:\> Set-WinUserLanguageList de-DE -ForcePS D:\> Set-WinUILanguageOverride -Language de-DE |
If want to install additional languages download the Language pack DVD and mount it. For example to F:\
1 | PS D:\> Add-WindowsPackage -PackagePath F:\x64\langpacks\Microsoft-Windows-Client-language-Pack_x64_es-es.cab -Online |
Michael