How to add a language pack to the Win8 system ISO image?

  
        How do I add other national language packs to the Win8 system ISO image? The method is actually very simple, the same applies to the Win7/Win8.1/Win10 system. Here is an example of adding a language pack to a Win10 image.

Required materials:
1, English Win10 preview version of the original English ISO image;
2, Chinese language package to be integrated;
3, ISO package software, available soft disk pass;
4, the dism tool that can process wim image files. Win8 and above are included, it is recommended to operate in Windows 10 Preview.
Production steps:
Forgive me, I will not take screenshots here, try to use words to make it clear.
1, extract or extract the sources\\install.wim file in the ISO image
Assuming the path of the wim file is: E:\\sources\\install.wim
2, the first one of the mounted wim files Image.
New mount target location, such as E:\\mount. Run CMD as an administrator and enter the following command to enter, taking care not to drop the spaces.
Dism /Mount-Image /ImageFile:E:\\sources\\install.wim /index:1 /MountDir:E:\\mount
Note: index indicates the image number. The first one is the professional version, the second one is the home version, um, in fact, there is always a home version.
3, integrated language package
Assume that the language package file by path: E: \\ x64_zh-cn_lp.cab. Create a new temporary folder, assuming the path is E:\\temp. Then enter the following command to enter
Dism /Image:E:\\mount /ScratchDir:E:\\temp /Add-Package /PackagePath:E:\\x64_zh-cn_lp.cab
4, set the default language
Enter the following command and enter
Dism /Image:E:\\mount /Set-SKUIntlDefaults:zh-CN
This command can be used to set all of them. Of course, there are many items in it. , can be set individually, click here to view the reference article.
5. Submit the changes. Enter the following command to enter
Dism /Unmount-Image /MountDir:E:\\mount /Commit
6, generate ISO image
Use floppy disk here. Use the floppy disk to open the original ISO image, delete sources\\install.wim in the upper part of the software, and find the integrated software package install.wim in the lower part. Finally save as, and you're done.


Copyright © Windows knowledge All Rights Reserved