mrmoshpotato Posted December 29, 2006 Posted December 29, 2006 Hello everyone,I'm doing my first setup of an unattended install CD, and I've run into a small annoyance. With the hotfixes, you have to click OK on each "Integrated install has completely successfully." box. With 64 hotfixes needing to be applied, this seems to kind of defeat the purpose of an unattended install. Here's the batch file I have:TITLE Windows XP SP2 Slipstreamer brought to you by www.MSFN.orgCLS@echo offECHO.ECHO Slipstreaming Windows XP SP2 UpdatesECHO Please wait...FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCDECHO.ECHO Slipstreaming Completed!ECHO.pauseEXITIt's verbatim from the manual section of the Integration webpage I think.Is there something I can add to make the "Successful" box go away automatically and have it go on to the next hotfix by itself?Thanks,Ryan
Yzöwl Posted December 30, 2006 Posted December 30, 2006 Add the /U or /PASSIVE switch:FOR %%? IN (*.EXE) DO START "" /WAIT %%? /PASSIVE /INTEGRATE:C:\XPCD
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