Silent Install Options
All of our setups can be run in a silent mode, so that you can create a script or batch file for installing.
setup.exe /S /SNO=XCSUB-RA1SU-XXXXX-XXXXX-XXXXX
To specify a non-default installation path you may specify the "/PATH" option. For instance:
setup.exe /S /SNO=XCSUB-RA1SU-XXXXX-XXXXX-XXXXX /PATH=C:\Your\Path
Note that the silent installer is non-blocking. However, using the "Start-Process" cmdlet with the "-Wait" switch in PowerShell will cause the command to not return until the process is complete. For instance:
Start-Process setup.exe -ArgumentList @("/S","/SNO=XCSUB-RA1SU-XXXXX-XXXXX-XXXXX") -Wait
Note: The /S option is case sensitive. Alternatively, /SILENT or /VERYSILENT (also case-sensitive) may be specified instead of /S.
Uninstalling
All of our uninstallers can be run in silent mode as well. To do so, the /SILENT or /VERYSILENT flag must be specified. For example:
uninstall.exe /SILENT
Note: The /S option is not supported when running the uninstaller. Please use either /SILENT or /VERYSILENT.
Using Proxies
Windows based setups (.exe) will automatically detect and use system proxy settings. No special settings are necessary.
Java based setups require proxy settings to be specified explicitly. For instance:
java -Dhttp.proxyHost=192.168.1.24 -Dhttp.proxyPort=808 -jar setup.jar
We appreciate your feedback. If you have any questions, comments, or suggestions about this article please contact our support team at support@callback.com.