Jump to content

Order of integrating updates


Recommended Posts


You can add .MSU packages offline at any time - nothing is actually happening to the image itself when you modify it offline. The specialization of the image (removing components, adding packages, etc) happens during setup itself after the OS image is applied to the disk.

Link to comment
Share on other sites

I just place all the updates obtain in a folder and then use this command to inject them into windos image, never had any issues with which one to install first, as i think that windows does it all for its self..

REM This is gonna take a while.

PAUSE

MD %~dp0MOUNT

Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0MOUNT

Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"

Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit

Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:2 /MountDir:%~dp0MOUNT

Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"

Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit

Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:3 /MountDir:%~dp0MOUNT

Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"

Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit

Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:4 /MountDir:%~dp0MOUNT

Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"

Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit

Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:5 /MountDir:%~dp0MOUNT

Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"

Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit

REM Check for errors before closing.

PAUSE

Link to comment
Share on other sites

  • 3 weeks later...

Actually order does matter for some updates. I have tried to make on numerous occassions to make a fully updated usb key but I had to install certain updates at the end. Some of them have pre-reqs for those updates.

That would not be an order update, then, it would be the fact that the prereqs aren't ready during staging. Well, OK, it's an order thing (if the updates had applied the prereqs would be available), but that doesn't matter if you're dumping them all in - any update that requires a previous update to be installed (or any updates that modify the servicing engine itself) shouldn't be added offline anyway, due to the very fact that they require other components to have been updated first (which is impossible during setup).
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...