Solved How to add multiple Language packs to Image.wim


ijalabs

Active member
Local time
4:12 PM
Posts
22
OS
Windows 11
Hi Experts,

I am creating a custom image using DISM command for English, now i have got a request to add more than one language packs. Example i need to include Chinese and Japanese packs.

So far we had a different team in the respective location working on the image creation now they wanted to have a single image with multiple the language packs.

Kindly suggest how to we can include multiple language packs.

Thanks
BS
 
Windows Build/Version
Windows 11 22H2

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP Z2 SFF G9
1. Download the correct W11 Language ISO for your release. 22H2 & 23H2 share the same ISO.
2. Mount the ISO file in Explorer, by clicking on it. Copy all the CAB's for your desired languages to a new folder.
3. Mount your image the normal way.

4. Add all your Language Packs in one command.
Code:
Dism /image:<path to image mount> /Add-Package /PackagePath:<path to new LP folder>

Dism /image:C:\temp\mountdir /Add-Package /PackagePath:D:\LanguagePacks

5. Most importantly, now update your image with KB's if you normally do this step. LP's must always be installed BEFORE the monthly updates, otherwise you end up having to reinstall them again after installation.

6. Installed LP's won't show up in your new users' preferences. Run a short PowerScript to make them visible, as a RunOnce task.

AddLanguages.ps1
Code:
$OldList = Get-WinUserLanguageList
$OldList.Add("zh-CN")
$OldList.Add("ja-JP")
Set-WinUserLanguageList $OldList -Force
 

My Computer

System One

  • OS
    Windows 7

Latest Support Threads

Back
Top Bottom