Appearance
Silent Installations
To use the silent/unattended installation option, open a CMD prompt as Administrator on the application server. You will need to supply all of the following command line argument keys marked as required and can include any of the optional parameters.
/InstallPath
--> Optional (local or UNC full path)/SvcUserUsername
--> Required/SvcUserPassword
--> Required/SvcUserDomain
--> Required (when using a domain Service Account User)/DbConnServerName
--> Required/DbConnLoginType
--> Required (values:WinAuth
orSQL
)/DbConnUsername
--> Required (whenDbConnLoginType="SQL"
)/DbConnPassword
--> Required (whenDbConnLoginType="SQL"
)/DbConnDatabase
--> Required (i.e.Pronto
)/DbConnTrustCertificate
--> Optional; set totrue
if desired/LOG
--> Optional; set to the file path for debug logging the installation process/ParameterFile
--> Optional; set to file path of the list of parameters. See example below.
json
{
"ServiceUser": {
"UserName": "usernameHere",
"Password": "PasswordHere",
"Domain": "my.domain.com"
},
"Database": {
"ServerName": "SERVER_NAME_HERE",
"LoginType": "SQL",
"UserName": "MyUsernameHere",
"Password": "MyPasswordHere",
"DatabaseName": "Pronto",
"TrustCertificate": "true",
"MultiSubnetFailover": "false"
}
}
Usage example:
"C:\Users\JohnDoe\Downloads\AlphaTrust® e-Sign 5.0.0.0.exe" /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /InstallPath="E:\" /SvcUserUsername="johndoe" /SvcUserPassword="s0mEPa$$word" /DbConnServerName="yourDb.dnsName.here" /DbConnLoginType="WinAuth" /DbConnDatabase="Pronto" /DbConnTrustCertificate="true" /LOG="c:\temp\InstallationLogFile.txt"
To shut down running services prior to updating, you can also run the following commands before running the install command (above):
taskkill /IM ProntoServerSvc.exe /F
iisreset /stop
sc config "AlphaTrustComBridge" start= disabled
net stop AlphaTrustComBridge /y