ralexand88 Posted October 23, 2003 Posted October 23, 2003 Has anyone seen this error before and how do I correct it. I'm also open to any other comments.CLS@echo offECHO.ECHO Installing Windows XP UpdatesECHO.ECHO Installing Framework Net 1.1....start /wait %systemdrive%\install\NetFramework\netfx.msi /QBECHO.ECHO Installing hu1002_per.exe...start /wait %systemdrive%\install\xp_updates\hu1002_per.exe /Q:A /R:NECHO.ECHO Installing Q322011...start /wait %systemdrive%\install\xp_updates\Q322011_WXP.exe /Q /M /ZECHO.ECHO Installing Q327979...start /wait %systemdrive%\install\xp_updates\Q327979_WXP_SP2_x86_ENU.exe /Q /M /ZECHO.ECHO Installing Q810243...start /wait %systemdrive%\install\xp_updates\Q810243_WXP_SP2.exe /Q /M /ZECHO.ECHO Installing Q814995...start /wait %systemdrive%\install\xp_updates\Q814995_WXP_SP2_x86_ENU.exe /Q /M /ZECHO.ECHO Installing Q322011...start /wait %systemdrive%\install\xp_updates\Q322011_WXP.exe /Q /M /ZECHO.ECHO Installing Q817778...start /wait %systemdrive%\install\xp_updates\WindowsXP-KB817778-x86-ENU.exe /Q /M /ZECHO.ECHO Installing Q820291...start /wait %systemdrive%\install\xp_updates\WindowsXP-KB820291-x86-ENU.exe /Q /M /ZECHO.ECHO Installing Q821253 Error Reporting Update...start /wait %systemdrive%\install\xp_updates\WindowsXP-KB821253-x86-ENU.exe /Q /M /ZECHO.ECHO Deleting ASP.NET User Account created by .NET Framework 1.1...start /wait DELUSER /Q aspnetECHO.ECHO Deleting Temp Installation Files...RD /S /Q %systemdrive%\DriversRD /S /Q %systemdrive%\installECHO.ECHO Restarting the PC in 1 minute...psshutdown.exe -r -t 60 -f -m "Windows XP will now restart in 1 minute, this will give enough time for the shortcuts to update and for the shell to fully load before its ready to restart!"ECHO.EXIT
b0r3d Posted October 23, 2003 Posted October 23, 2003 I think its because you have the start /wait switch when deleting the asp.net userRemove that and it should be fine
DaveXP Posted October 23, 2003 Posted October 23, 2003 the file deluser has to been in the %windir% for you to run it like that.if its not make a folder called tools in your install folder place deluser in it and place this in your batch file:ECHO Copying deluser utility...COPY "%systemdrive%\Install\Tools\deluser.exe" "%systemroot%\"ECHO.ECHO Deleting ASP.NET User Account created by .NET Framework 1.1...start /wait DELUSER /Q aspnetThe above code is from AaronXP's Unattended Site.
Aaron Posted October 23, 2003 Posted October 23, 2003 deluser.exe won't be needed using miso1391's command.
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