1.

Solve : Need to have DOS Windows Open to install Next Program?

Answer»

I am writing a batch file to install IE 7 and WinBug. I install IE 7 first then next is WinBug program. However after IE7 INSTALLATION, the DOS Windows just closed and not proceed to WinBug installation. IE7 installation just calling IE7 MSI with norestart switch.

:IE7
ECHO Installing Internet Explorer 7. Please wait..........................
chdir /d "C:\Source\IE7"
install.CMD

:WinBug
ECHO Install WinBug
chdir /d "C:\Winbug"
WinInstall.cmd

How can I install WinBug after IE 7?

Thanks.You probably just need to CALL your CMD (or BAT) file. Like:
Code: [Select]:IE7
ECHO Installing Internet Explorer 7. Please wait..........................
chdir /d "C:\Source\IE7"
call install.cmd

:WinBug
ECHO Install WinBug
chdir /d "C:\Winbug"
call WinInstall.cmdFunction CALL GOT the job done!

Thanks!



Discussion

No Comment Found