October 9, 200421 yr In the guide to Unattended Installation of XP where you get windows on first boot to run a batch file, is it possible for a popup to come up asking for you to insert the correct CD and then when you put the CD in, press OK and ot starts using that CD for installation of programs rather than it on the acutual unattended windows CD?This could be useful if you want to change what programs you want to install for different computers and have the programs on different CD's
October 10, 200421 yr Kind of defeats the purpose of an "unattended" install, but I suppose it could be done like so:IF NOT EXIST %CDROM%\xxxxx.txt GOTO INSCD:INSCDECHO.ECHO Please insert CD 2PAUSEIF NOT EXIST %CDROM%\xxxxx.txt GOTO INSCDIF EXIST %CDROM%\xxxxx.txt GOTO INSTALL:INSTALL%CDROM%\whatever:FINISHECHO.ECHO Please insert Windows Unattended CD-ROMPAUSEIF NOT EXIST %CDROM%\win51 GOTO FINISHIF EXIST %CDROM%\win51 GOTO QUIT:QUITEXITNow, for that to work you'll need some way to define %CDROM% and replace xxxxx.txt with whatever file you want. But that should do it. I haven't tested it, mind you, but it should.
October 11, 200421 yr Right, jito's code above will do what you want.Also, you can go to the Unattended Windows forum, and see the "stickied" topics there. There's one called "Threads of Interest" - it lists a topic that has been discussing exactly this (how to do a 2 CD install).
Create an account or sign in to comment