How To Install Language Packs in Windows 10 With Powershell

Subscribers:
15,400
Published on ● Video Link: https://www.youtube.com/watch?v=-EIWzXKI0fA



Category:
Guide
Duration: 5:18
16,029 views
34


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







Tags:
computergarage_org
how to install language packs in windows 10 with powershell
install language packs in windows 10
windows 10 language packs
install windows 10 local experience pack powershell
Add-AppxProvisionedPackage
Add-WindowsPackage
Get-AppxPackage
Get-WinSystemLocale
Get-WinUserLanguageList
Set-WinUILanguageOverride
New-WinUserLanguageList
Set-WinUserLanguageList