I just figured I'd toss this in to help others... (Tested in XP x86)
Obviously you can make scripts to semi-automate this.
Tools Needed:
Vista Source
Windows AIK
Hotfixes in .cab form
The quickest way to integrate *.cab's into Vista is to open a PE Tools Command Prompt (Run it elevated if you're in Vista)
Variables:
CODE
%VDVD% = The Root of the Vista DVD (Local Copy)
%VMount% = Directory that "install.wim" is mounted to
%VUpdates% = Directory holding your .cab files
Ex. (as used on my system)
V:\DVD (where Local Vista source is located)
V:\Mount
V:\Updates
Prep: Setup Variables for the three directories needed (or replace them with direct paths)
1.) Mount Image (Change Index number to match the version you want to install)
CODE
imagex /mountrw %VDVD%\sources\install.wim 4 %VMount%
2.) Import Updates
CODE
peimg %VMount%\windows /import=%VUpdates%\*.cab
3.) Install Updates
CODE
peimg /install=*Package* %VMount%\windows
4.) Check List
CODE
peimg /list /image=%VMount%\windows
5.) Repeat Step 3 with following if needed
CODE
peimg /install=*Dream* %VMount%\windows
peimg /install=*Client* %VMount%\windows
6.) Check Error Level
CODE
ECHO %ErrorLevel%
7.) If result 0 then:
Go to Step 8
If result "other"
Go to Step 8a
8.)
CODE
imagex /commit /unmount %VMount%
8a.)
CODE
imagex /unmount %VMount%
Hope this helps...