Jump to content

Merging Windows Updates


morocco31477

Recommended Posts


Well there was only one update that I have not installed. So I created the directory C:\Updates and input your command in the run command and it just blank, so I did it in CMD and got an error, "080070032, Error 50, The request is not supported, The DISM log file can be found at ..."

Link to comment
Share on other sites

Make sure you read the DISM documentation, specifically look at the /Add-Package command line. You would mount the WIM file and image number, then use /Add-Package to add the .msu packages to the .WIM file, then unmount the WIM.

To gather information on a .WIM file (image index, names, etc):

DISM /Get-WimInfo /WimFile:<DriveLetter:\full\path\to\.wim\file.wim>

To mount a .WIM file:

DISM /Mount-Wim /WimFile:<DriveLetter:\full\path\to\.wim\file.wim> /index:<1,2,etc> /MountDir:<DriveLetter:\path\to\temporary\mount\folder>

To add .msu packages to a mounted .WIM file:

DISM /Image:<DriveLetter:\path\to\temporary\mount\folder> /LogPath:AddPackage.log /AddPackage /PackagePath:<DriveLetter:\full\path\to\folder\containing\all\msu\packages>

To unmount and commit the changes to the .WIM file:

DISM /Unmount-Wim /MountDir:<DriveLetter:\path\to\temporary\mount\folder> /commit

You can find all the DISM command-line options here.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...