morocco31477 Posted October 23, 2009 Posted October 23, 2009 I have about 80 .msu files which are windows updates. Is there a way to merge them together into one executable file?
MagicAndre1981 Posted October 23, 2009 Posted October 23, 2009 You could use DISM.exe /online /Add-Package:C:\Updates, this should install all updates found in the folder (I haven't tried it, maybe you can try it and post if it works).
morocco31477 Posted October 23, 2009 Author Posted October 23, 2009 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 ..."
ajua Posted October 25, 2009 Posted October 25, 2009 I don't know if you can do that, but you can always merge/install them on a Windows 7 source and update the image files.
morocco31477 Posted October 27, 2009 Author Posted October 27, 2009 I don't know if you can do that, but you can always merge/install them on a Windows 7 source and update the image files.Like slipstream them in? I do that with XP service packs, how do you do it with windows 7 updates?
cluberti Posted October 27, 2009 Posted October 27, 2009 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> /commitYou can find all the DISM command-line options here.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now