Jump to content

The444

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by The444

  1. Found it m8 To remove a language pack using DISM 1. Locate the Windows image (.wim) file that contains the Windows images that you intend to remove languages from. 2. Click Start, point to All Programs, point to Windows OPK or Windows AIK, right-click Deployment Tools Command Prompt, and then select Run as administrator. 3. At the command prompt, type the following command to retrieve the name or index number for the image you want to modify. Dism /Get-WIMInfo /WimFile:C:\test\images\install.wim An index or name value is required for most operations that specify a .wim file. 4. Type the following command to mount the offline Windows image. Dism /Mount-WIM /WimFile:C:\test\images\install.wim /Name:"Windows 7 HomeBasic" /MountDir:C:\test\offline 5. Optional: Type the following command to list the languages in the offline image. Dism /Image:C:\test\offline /Get-Intl 6. Type the following command to remove a language pack from the image. You can remove multiple .cab files using one command-line statement. Dism /Image:C:\test\offline /Remove-Package /PackagePath:C:\packages\package1.cab /PackagePath:C:\packages\package2.cab ... 7. Type the following command to commit the changes. The image remains mounted until the /unmount option is used. Dism /Commit-Wim /MountDir:C:\test\offline 8. The language packs are removed from your image.
  2. Is there a way we can remove the Language packs ?
×
×
  • Create New...