Windows operating system comes with multiple language packs that allow users to change the display language of their system. These language packs are essential for users who prefer to work in their native language or need to communicate in different languages. However, sometimes you may need to extract all the existing language packs from a Windows installation image for various reasons such as creating a customized installation or troubleshooting language-related issues.
In this article, we will guide you through the process of extracting all the language packs from a Windows installation image. Please note that this process requires administrative privileges on your computer.
Step 1: Download and Install Windows Assessment and Deployment Kit (ADK)
The first step is to download and install the Windows Assessment and Deployment Kit (ADK) from the official Microsoft website. ADK is a collection of tools that allow you to customize, assess, and deploy Windows operating systems.
1. Visit the Microsoft website and search for "Windows Assessment and Deployment Kit".
2. Download the latest version of ADK compatible with your Windows version.
3. Run the downloaded setup file and follow the on-screen instructions to install ADK on your computer.
Step 2: Launch Deployment and Imaging Tools Environment
Once the ADK is installed, you need to launch the Deployment and Imaging Tools Environment (Dism.exe) to extract the language packs.
1. Press the Windows key on your keyboard and type "Deployment and Imaging Tools Environment".
2. Right-click on "Deployment and Imaging Tools Environment" in the search results and select "Run as administrator".
3. If prompted for permission, click "Yes" to allow the program to make changes to your computer.
Step 3: Mount the Windows Installation Image
After launching the Deployment and Imaging Tools Environment, you need to mount the Windows installation image from which you want to extract the language packs.
1. In the Deployment and Imaging Tools Environment window, type the following command and press Enter:
dism /mount-wim /wimfile:C:\path\to\installation\image\install.wim /index:1 /mountdir:C:\path\to\mount\directory
Replace "C:\path\to\installation\image\install.wim" with the actual path to your Windows installation image file, and "C:\path\to\mount\directory" with the path where you want to mount the image.
2. Wait for the mounting process to complete. It may take a few minutes.
Step 4: Extract the Language Packs
Now that the Windows installation image is mounted, you can extract the language packs using the Deployment and Imaging Tools Environment.
1. In the Deployment and Imaging Tools Environment window, type the following command and press Enter:
dism /get-wiminfo /wimfile:C:\path\to\mount\directory\install.wim
This command will display a list of indexes and language packs available in the mounted image.
2. Identify the index number of the Windows edition you want to extract the language packs from.
3. To extract all language packs, type the following command and press Enter:
dism /export-image /sourceimagefile:C:\path\to\mount\directory\install.wim /sourceindex:1 /destinationimagefile:C:\path\to\output\file\languagepacks.wim /compress:max /checkintegrity
Replace "C:\path\to\mount\directory\install.wim" with the path to the mounted image file, and "C:\path\to\output\file\languagepacks.wim" with the desired path and filename for the extracted language packs file.
4. Wait for the extraction process to complete. The time taken will depend on the size of the language packs and your system's performance.
Step 5: Unmount the Windows Installation Image
Once the extraction process is finished, you need to unmount the Windows installation image.
1. In the Deployment and Imaging Tools Environment window, type the following command and press Enter:
dism /unmount-wim /mountdir:C:\path\to\mount\directory /discard
Replace "C:\path\to\mount\directory" with the path to the directory where the image was mounted.
2. Wait for the unmounting process to complete.
Step 6: Access the Extracted Language Packs
Now that you have extracted the language packs, you can access them by locating the output file specified in Step 4. The file "languagepacks.wim" contains all the extracted language packs.
You can use these language packs for various purposes such as creating a customized Windows installation with multiple language options or troubleshooting language-related issues on your system.
That's it! You have successfully extracted all the existing language packs from a Windows installation image.
Conclusion
Extracting language packs from a Windows installation image can be useful for customizing your Windows installation or resolving language-related issues. By following the steps outlined in this article, you can easily extract all the language packs and access them for your specific needs.
| Reference | Link |
|---|---|
| Windows Assessment and Deployment Kit (ADK) | https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install |
| Deployment Image Servicing and Management (DISM) Command-Line Options | https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/dism-command-line-options |