Wednesday, August 24, 2011

Installing Many Programs at Once

It takes a lot of time to install different software on the users' workstations. It is much easier to run a single batch script created with the award-winning batch files editor and install all these programs immediately. The script will look like this one:
@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.

No comments:

Post a Comment

Translate