How To Install Language Packs in Windows 10 With Powershell
Hi, In this video I will show you How To Install Language Packs in Windows 10 With Powershell.
Pre Windows 1809 = Language Pack : .cab files
Post Windows 1809 = Local Experience Pack : .appx files
Download language pack from https://licensing.microsoft.com/
Pre Windows 1809 Commands
Add-WindowsPackage -Online -PackagePath C:\Temp\\lp_de.cab
Dism /Add-Package /Image:"C:\mount" /PackagePath="C:\Temp\Microsoft-Windows-Client-Language-Pack_x64_en-us.cab"
Post Windows 1809 Commands
Add-AppxProvisionedPackage -Online -PackagePath .\LanguageExperiencePack.it-IT.Neutral.appx `-LicensePath .\License.xml
Add-AppxProvisionedPackage -Path c:\mount -PackagePath .\LanguageExperiencePack.it-IT.Neutral.appx -LicensePath .\License.xml
Check Language Pack Installed
Get-AppxPackage -AllUsers | ? Name -Like *LanguageExperiencePack* |
Format-List Name, PackageUserInformation
Check Current Set Language Pack
Get-WinSystemLocale
Get-WinUserLanguageList
## Set Default Values For All Users ##
Set-WinUILanguageOverride -Language de-DE
New-WinUserLanguageList -Language de-DE
Set-WinUserLanguageList de-DE -Force
Subscribe YouTube : http://www.youtube.com/user/lcp03o?sub_confirmation=1
Website : http://www.computergarage.org
Thanks for watching this video, If you have any feedback please post it below and hit the like button if you found this video useful. If you have time please subscribe to my channel @ http://www.youtube.com/user/lcp03o?sub_confirmation=1