@echo off
start /wait "" "C:\Install\setup1.exe"
start /wait "" "C:\Install\setup2.exe"
start /wait "" "C:\Install\setup3.exe"
start /wait "" "C:\Install\setup4.exe"
start /wait "" "C:\Install\setup5.exe"
It is not hard to change the paths to the installation EXEs and their names. But to simplify the installation process you should search for command-line parameters of popular installation engines (InnoSetup, NSIS, Windows Installer etc.). These parameters should let you install software in 'silent' mode and specify destination folder, components to be installed and other settings.
start /wait "" "C:\Install\setup1.exe"
start /wait "" "C:\Install\setup2.exe"
start /wait "" "C:\Install\setup3.exe"
start /wait "" "C:\Install\setup4.exe"
start /wait "" "C:\Install\setup5.exe"
It is not hard to change the paths to the installation EXEs and their names. But to simplify the installation process you should search for command-line parameters of popular installation engines (InnoSetup, NSIS, Windows Installer etc.). These parameters should let you install software in 'silent' mode and specify destination folder, components to be installed and other settings.
No comments:
Post a Comment