e-signature SignDoc Installer
Summary
13485
General
The installation can be run in silent mode e.g. in a batch file with some options.
For this purpose a response file by default setup.iss will be needed.
Response files can be created by running of installation program (by default Setup.exe) with the /r option.
Create Response file for installation procedure:
The install program Setup.exe should be started in Record mode with the following options:
- /r Record Mode (displays all run-time Dialogs and stores the data in a file called Setup.iss)
- /f1 Path for response file
Example:
Setup.exe /r /f1"C:\Temp\Setup.iss"
Create Response file for un-installation procedure:
The un-install program Setup.exe should be started in Record mode with the following options:
- /r Record Mode (displays all run-time Dialogs and stores the data in a file called
- /f1 Path for response file
Example:
Setup.exe /r /f1"C:\Temp\Unintall_Setup.iss"
Installation in silent mode
- start the command window (CMD)
- start the installation procedure as shown in the example below:
Example:
Setup.exe /s /L1033 /f1"C:\Temp\Setup.iss"
Uninstallation in Silent Mode
- start the command window (CMD)
- start the Uninstallation procedure as shown in the example below:
Example:
Setup.exe /s /L1033 /f1"C:\Temp\Unintall_Setup.iss" /f2"C:\Temp\Setup.log"
Availabe options
- /L1033 installation in English
- /L1031 installation in German
- /s Silent Mode
- /r Record Mode
- /f1 Path for the response file
- /f2 Path for the log file, with the install result (ResultCode=0 is called no errors)
Keywords: silent, installer, signdoc