February 5, 201214 yr Hi.Me Make Muti Win in xp sp2/sp3/sp2 x64.But Now Need Help For Install app.cmdow @ /HIDCLS@echo offTITLE Windows XP SP2 - Unattended Installationstart /wait %systemdrive%\install\Applications\Setup_1_32bit.exe -install -forcestart /wait %systemdrive%\install\Applications\Setup_2_32bit.exe -install -forcestart /wait %systemdrive%\install\Applications\Setup_4.exestart /wait %systemdrive%\install\Applications\Setup_6.exe /sAll /norestartstart /wait %systemdrive%\install\Applications\Setup_7.exe /S /norebootstart /wait %systemdrive%\install\Applications\Setup_8.exe -msstart /wait %systemdrive%\install\Applications\Setup_9.exe /silent /installstart /wait %systemdrive%\install\Applications\Setup_10.exestart /wait %systemdrive%\install\Applications\Setup_11.exe /SILENTstart /wait %systemdrive%\install\Applications\Setup_12.exestart /wait %systemdrive%\install\Applications\Setup_13.exe /SILENTstart /wait %systemdrive%\install\Applications\Setup_14.exe /S /install=SFQDRA (F=file association, Q=quicklaunch icon, D=desktop icon, R=fake registration, A=run winamp agent/set default)start /wait %systemdrive%\install\Applications\Setup_15_32bit.exe /sstart /wait %systemdrive%\install\Applications\Setup_16.exe /sstart /wait %systemdrive%\install\windows\Setup_1.exe /passive /no-default /closeprograms /norestartstart /wait %systemdrive%\install\windows\Setup_2_32bit.exe /s REBOOT=Suppressstart /wait %systemdrive%\install\windows\Setup_3.exe /q:a /c:"install.exe /qb"start /wait %systemdrive%\install\windows\Setup_3.exe /passive /norestartstart /wait %systemdrive%\install\windows\Setup_6.exe /passive /norestartstart /wait %systemdrive%\install\windows\Setup_7_32bit.exe /Qstart /wait %systemdrive%\install\windows\Setup_8_32bit.exe /Qstart /wait %systemdrive%\install\windows\Setup_9_32bit.exe /q /norestartstart /wait %systemdrive%\install\windows\Setup_10.exe /q /norestartstart /wait %systemdrive%\install\windows\Setup_11.exe /q /norestartstart /wait %systemdrive%\install\windows\Setup_12.exe /q /norestartstart /wait %systemdrive%\install\windows\Setup_13.exe /q /norestartstart /wait %systemdrive%\install\windows\Setup_14.exe /q /norestartRD /S /Q %systemdrive%\install\DEL "%systemdrive%\install\"set h="%SystemRoot%\system32\drivers\etc\hosts"attrib -r -a -s -h %h%echo.>>%h%for %%s in (127.0.0.1 acdid.acdsystems.com) do find /c /i "%%s" %h%>nul||(echo.Adding "%%s" to hosts file&echo.127.0.0.1 %%s>>%h%||echo.Access denied when adding %%s!)cmdow @ /HIDshutdown.exe -r -f -t 3 -c "Windows XP will restart in 3 seconds..."EXIT Edited February 5, 201214 yr by MgmTest
February 5, 201214 yr What help are you requiring?Posting a screenshot and ill thought out batch file doesn't tell us anything.Here's the script again, changed a little.@CMDOW @ /HIDSETLOCAL(SET _SI=%SYSTEMDRIVE%\install)START "" /WAIT "%_SI%\Applications\Setup_1_32bit.exe" -install -forceSTART "" /WAIT "%_SI%\Applications\Setup_2_32bit.exe" -install -forceSTART "" /WAIT "%_SI%\Applications\Setup_4.exe"START "" /WAIT "%_SI%\Applications\Setup_6.exe" /sAll /norestartSTART "" /WAIT "%_SI%\Applications\Setup_7.exe" /S /norebootSTART "" /WAIT "%_SI%\Applications\Setup_8.exe" -msSTART "" /WAIT "%_SI%\Applications\Setup_9.exe" /silent /installSTART "" /WAIT "%_SI%\Applications\Setup_10.exe"START "" /WAIT "%_SI%\Applications\Setup_11.exe" /SILENTSTART "" /WAIT "%_SI%\Applications\Setup_12.exe"START "" /WAIT "%_SI%\Applications\Setup_13.exe" /SILENTSTART "" /WAIT "%_SI%\Applications\Setup_14.exe" /S /install=SFQDRASTART "" /WAIT "%_SI%\Applications\Setup_15_32bit.exe" /sSTART "" /WAIT "%_SI%\Applications\Setup_16.exe" /sSTART "" /WAIT "%_SI%\windows\Setup_1.exe" /passive /no-default /closeprograms /norestartSTART "" /WAIT "%_SI%\windows\Setup_2_32bit.exe" /s REBOOT=SuppressSTART "" /WAIT "%_SI%\windows\Setup_3.exe" /q:a /c:"install.exe /qb"START "" /WAIT "%_SI%\windows\Setup_3.exe" /passive /norestartSTART "" /WAIT "%_SI%\windows\Setup_6.exe" /passive /norestartSTART "" /WAIT "%_SI%\windows\Setup_7_32bit.exe" /QSTART "" /WAIT "%_SI%\windows\Setup_8_32bit.exe" /QSTART "" /WAIT "%_SI%\windows\Setup_9_32bit.exe" /q /norestartSTART "" /WAIT "%_SI%\windows\Setup_10.exe" /q /norestartSTART "" /WAIT "%_SI%\windows\Setup_11.exe" /q /norestartSTART "" /WAIT "%_SI%\windows\Setup_12.exe" /q /norestartSTART "" /WAIT "%_SI%\windows\Setup_13.exe" /q /norestartSTART "" /WAIT "%_SI%\windows\Setup_14.exe" /q /norestartRD/S/Q "%_SI%"(SET _HF=%SYSTEMROOT%\SYSTEM32\DRIVERS\ETC\HOSTS)ATTRIB -R "%_HF%"FOR %%a IN (127.0.0.1 acdid.acdsystems.com) DO ( FINDSTR/IV "^#" "%_HF%"|FIND /I "%%a"||(>>"%_HF%" ECHO=127.0.0.1 %%a))SHUTDOWN.EXE -r -f -t 3 -c "Windows XP will restart in 3 seconds..."
February 6, 201214 yr Author Only Install App In All Win.WINNT.SIF[GuiRunOnce]"install\install.cmd"CMDLINES.TXT"%CDROM%\install\Test.cmd" Edited February 6, 201214 yr by MgmTest
February 6, 201214 yr I've never been much of a fan of cryptic crosswords so please try to ask a properly formed question, (without posting any more graphics)!We have no idea what the contents of TEST.CMD are, (I'm assuming that the previous code you posted was INSTALL.CMD).We still do not know what help you are requiring, but I'll tell you that CMDLINES.TXT is unlikely to know what %CDROM% means.
February 6, 201214 yr Author I contact my software for Windows from a shared folder to install it 3.Install only one folder
February 6, 201214 yr I BELIEVE what he is trying to say, so eloquently, is the following:"I have a multi- boot CD\DVD that contains several Versions of XP on it. How Can I implement the following .cmd for EACH installation while only having one folder for the application installers on the disk?"P.S. I see a folder called "HBCD" could that be Hirens by any chance?
February 6, 201214 yr I'll trust your interpretation and move the post to the Multi-Boot Forum.(I'll remind the OP however that the original script they posted is wrong and that the cmdlines.txt command is too!)
February 7, 201214 yr Author Me Change Winnt.sif to :[GuiRunOnce]Command0="%CDROM%\INSTALL\INSTALL.CMD"And CMDLINES.TXT"%CDROM%\INSTALL\INSTALL.CMD"Not Working Why?????????????????????????????????????
February 7, 201214 yr Because they are both incorrect commands, one of them I've already told you about twice!Really you should concentrate on learning how to correctly create single boot install media before you take the multi boot route.
Create an account or sign in to comment