Silent Installer of ZennoLab products
Please read the Terms of Use for Materials on ZennoLab
Why is it necessary?
With the execution of commands with special arguments in the console, you can automatically install and update Zennolab products.
In particular, it can be useful when you administer several servers with Zennolab products.
Examples for Windows Command Line
The following command sets ZennoPoster on the current computer (or updates if an older version is found).
Automatic installation (with the UI):
start /wait ZennoPosterPro-RU-v7.5.1.0.exe --silent --accept-license-agreement="https://zennolab.com/terms-of-service/"
Where ZennoPosterPro-RU-v7.5.1.0.exe is the name of the Build, which you want to install.
Silent installation (without UI):
start /wait ZennoPosterPro-RU-v7.5.1.0.exe --silent --hidden --accept-license-agreement="https://zennolab.com/terms-of-service/"
You can save this code and execute it as a .bat
file.
More examples with different arguments can be found at the end of this article.
Example on PowerShell
There are cases when you need to remotely administer computers for installation/update ZennoPoster. For this:
Connect to the remote computer via SSH
Run the PowerShell script
$pathToInstaller = "C:\Work\ZennoPosterPro-RU-v7.5.1.0.exe" #The path to the build that you want to run
$installerArguments = "--silent --accept-license-agreement=https://zennolab.com/terms-of-service/" #Command Line Arguments of the Installer
Start-Process -Wait -FilePath "$pathToInstaller" -ArgumentList "$installerArguments"
Detailed description of teams and arguments
General requirements for launching an automatic installation:
All arguments must be set starting with a double dash and separated by spaces.
The values of the arguments must be escaped by double quotes.
Before the setup command, you must add "start /wait" commands. This is necessary for the correct output of errors and for the correct waiting of the end of the installation process by console.
Required arguments | |||
---|---|---|---|
Argument name | The value of argument | Description | Logics |
--silent | Not required | Required. | - |
--accept-license-agreement= | Flag of acceptance of the license agreement. | If there is no reference to the link or the absence of the flag, the installer will expect a manual adoption of the license. | |
--installType=”” - Type of automatic installation
| "Default" or no argument | Standard installation type |
|
"UpdateOldest" | Update the oldest version or standard installation |
| |
"StandAlone" | New installation |
| |
"UpdateByVersion" | Update the specified version. Assumes the presence of argument --updateVersion=”X.X.X.X”, where X.X.X.X - the version of the product you need to update |
|
Optional arguments | ||
---|---|---|
Argument name | The value of argument | Logics |
--hidden | Not required | Quiet installation. Disables the display of the UI installer and hides it from the taskbar. Incompatible with the --waitUserAction. |
--login | Username and user password, on behalf of which it is necessary to make installation. | If there are only one of the arguments of the login and password, the second argument will be reset. |
--password | By default, data is used for authorization from the system registry. | |
--saleID | The license ID used when installing and search for installed products. | With all types of installation, a license with the transmitted SaleID will be selected in the license selection step. When using “Default” and “UpdateByVersion” installType , only products with the specified SaleID will be selected when searching for installed products. |
--installPath | Path for installation | The product will be installed according to the specified path. It also applies when reinstalling with a standard directory and update. |
--waitUserAction | Not required | Instead of the completion of the process, with any error, the installer will expect user actions and continues an automatic installation after successful transition to the next page. |
--activateHardware | true or false | By default = |
Table of comparison of types of automatic installation and causes of behavior | ||||
---|---|---|---|---|
The value of the InstallType argument | Installation | Update | Reinstall | Error |
“Default” | No other versions | There is one other version | This version is already installed. | There are two or more versions |
“Default” with argument --saleID | There are no other versions with such SaleID | There is one other version with such SaleID | This version is already installed, regardless of SaleID * | There are two or more versions with such SaleID |
“StandAlone”* | Standard logic | - | This version is already installed. | - |
“UpdateOldest” | No other versions | There are other versions - update the oldest | This version is already installed. | - |
“UpdateOldest” with argument --saleID | There are no other versions with such SaleID | There are other versions with such SaleID - we update the oldest | This version is already installed, regardless of SaleID * | - |
“UpdateByVersion”* | - | The product of the specified version is set - updating it | This version is already installed. | The product of the specified version is not installed. |
*Argument --saleID can only be used to select a license because, on one computer, two identical versions per license can not be installed.
Examples
Examples | |
---|---|
Startup command | Behavior by installer |
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --hidden |
|
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --saleID="SALE_ID" |
|
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --installType=”StandAlone” --login=”userareaLogin” --password=”userareaPassword” --saleID="SALE_ID" --installPath="D:/ZennoLab/" --waitUserAction |
|
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --installType=”UpdateOldest” --login=”userareaLogin” --password=”userareaPassword” |
|
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --installType=”UpdateOldest” --login=”userareaLogin” --password=”userareaPassword” --saleID="SALE_ID" --installPath="D:/ZennoLab/" --waitUserAction |
|
start /wait Installer.exe --silent --accept-license-agreement="https://zennolab.com/en/terms-of-service/ " --installType=”UpdateByVersion” --updateVersion=”X.X.X.X” --login=”userareaLogin” --password=”userareaPassword” --saleID="SALE_ID" --installPath="D:/ZennoLab/" |
|