Hi ankap , Thanks for the script, just what i was after but..
im not sure if ive implemented it right. (NOob)
it asks for the cd, put it in , click ok and the i get this error
My batch files
CLS
@echo off
TITLE Windows XP SP2 - Unattended Installation
ECHO Applying Registry Tweaks...
REGEDIT /S %systemdrive%\install\RegTweaks.reg
ECHO Starting installation of Applications
ECHO Installing Opera v7.54
ECHO Please wait...
start /wait %systemdrive%\install\opera\o754_3869.exe /s
ECHO Please wait...
start /wait %systemdrive%\install\install.exe "Applications_CD" \setup_office2003.cmd %SystemDrive%\install\cleanup.cmd
ECHO Restarting the PC in 4 minutes...
shutdown.exe -r -f -t 240 -c "Windows XP will now restart in 4 minute, this will give enough time for the shortcuts to update and for the shell to fully load before its ready to restart!"
ECHO.
ECHO Deleting Temp Installation Files...
RD /S /Q %systemdrive%\Drivers
RD /S /Q %systemdrive%\install
EXIT
On The Applications_CD.iso CD ive the following
@echo off
TITLE Windows XP SP2 - Unattended Installation (office cd)
ECHO.
ECHO.
ECHO Installing Office
ECHO Please wait...
start /wait %1\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb-
ECHO Restarting the PC in 4 minutes...
shutdown.exe -r -f -t 240 -c "Windows XP will now restart in 4 minute, this will give enough time for the shortcuts to update and for the shell to fully load before its ready to restart!"
ECHO.
ECHO Deleting Temp Installation Files...
RD /S /Q %systemdrive%\Drivers
RD /S /Q %systemdrive%\install
EXIT
ive also a cleanup.cmd file too.
This is really bugging me, my first attempt at batch files.
Big up too all the MSFN massive, great site.