Install Language Pack

weehong

New Member
Hello everyone,

May I know how to install the language pack to the ISO using NTLite?

I read several posts, but I'm unsure if that's the one I'm looking for.

I attached the screenshot below to describe my needs better.
 

Attachments

  • Language Pack.png
    Language Pack.png
    38.3 KB
have a look here

 
have a look here

Hi Taosd,

Thank you for this.

I have tried to add the language pack to the "Updates" section based on this.

But the language doesn't show up on the Language Option Section.
 
There are two steps in adding new language support:
1. Integrate LP's into image. Apply all languages BEFORE adding any monthly updates.

2. Create the language preferences for EACH user. The installed LP's are available to all users, but not everyone wants to have the same languages for their user account.

Run this PowerShell command from Post-Setup (User):
Code:
powershell -nop -ep bypass "$List = Get-WinUserLanguageList; $List.Add("fr-FR"); $List.Add("de-DE"); Set-WinUserLanguageList -LanguageList $List -Force"

Replace $List.Add() with your extra languages.
 
There are two steps in adding new language support:
1. Integrate LP's into image. Apply all languages BEFORE adding any monthly updates.

2. Create the language preferences for EACH user. The installed LP's are available to all users, but not everyone wants to have the same languages for their user account.

Run this PowerShell command from Post-Setup (User):
Code:
powershell -nop -ep bypass "$List = Get-WinUserLanguageList; $List.Add("fr-FR"); $List.Add("de-DE"); Set-WinUserLanguageList -LanguageList $List -Force"

Replace $List.Add() with your extra languages.
Thank you @Garlie.

That's work!!

I added all the languages to the Update section.
Once the Windows installed, then I just run the command above.
powershell -nop -ep bypass "$List = Get-WinUserLanguageList; $List.Add('fr-FR'); $List.Add('de-DE'); Set-WinUserLanguageList -LanguageList $List -Force"

Then restart and it works!
 
Back
Top