/INTEGRATE Method

Of the manual methods, this is most likely one of the simplest. All we're going to do is execute the hotfixes we downloaded previously, and add the /INTEGRATE switch to them.

» Getting down to business


» Automating this process via a batch file

This batch file will automatically slipstream hotfix EXEs into your XP SP2 source. Place all of the updates into the same folder as the batch.
TITLE Windows XP SP2 Slipstreamer brought to you by www.MSFN.org
CLS
@echo off
ECHO.
ECHO Slipstreaming Windows XP SP2 Updates
ECHO Please wait...
FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCD
ECHO.
ECHO Slipstreaming Completed!
ECHO.
pause
EXIT

And of course, replace C:\XPCD to where your source is.