Creating batch files

Create a setup.bat file to install silently. An example is outlined.

A batch file can be created to begin the installation in silent mode, with the parameters that you choose. The following example shows a sample script c:\setup.bat to demonstrate unattended installation:

@echo off
 rem ===================================
 rem sample silent install script
 rem
 setup /s /v"INSTALLDIR=\"X:\Install Path\" /qn"
 rem ====================================
 rem code could be added after the
 rem installation completes to
 rem customize the dsm.opt files 
 rem if desired
 rem ====================================