Batch files usage in silent installations
You can create a batch file to begin the silent installation with the parameters that you want to use.
The following script is a sample script (c:\spinstall.bat) of an unattended installation:
@echo off
rem ===================================
rem sample silent install script
rem
call x:\fcm\x64\mmc\8120\enu\spinstall.exe /s
/v"INSTALLDIR=\"C:\Program Files\Tivoli\"
ADDLOCAL=\"Client\" TRANSFORM=1033.mst
REBOOT=ReallySuppress /qn /l*v \"C:\Temp\DpExcMmcspinstallLog.txt\""
rem
call x:\fcm\x64\exc\8120\enu\spinstall.exe /s
/v"INSTALLDIR=\"C:\Program Files\Tivoli\tsm\"
ADDLOCAL=\"Client\" TRANSFORM=1033.mst
REBOOT=ReallySuppress /qn /l*v \"C:\Temp\DpExcspinstallLog.txt\""
rem ====================================
rem code could be added after the
rem installation completes to
rem customize the dsm.opt files
rem if desired
rem ====================================