Win10 system adds voice packets to ISO image

  
Win10 system has not been officially released, but the preview version has come out, some friends downloaded the English version of Win10 system. That will involve the problem of localization. This article will introduce the method of adding voice packets to the ISO image in the Win10 system.

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:
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, mount wim The first image in the file
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.
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.
If you want to finish the installation interface, you need to finish winpe, but also lack of materials. It is also possible to put the prepared install.wim directly into the 10130 Chinese image.
The above is the method of adding voice packets to the ISO image in the Win10 system. Of course, there are many ISO images that have been created by others, and you can download them directly.

Copyright © Windows knowledge All Rights Reserved