Silent installation guide (for advanced users only) Follow
You can install Revizto from Microsoft Windows command line using Microsoft msiexec utility. You can find more information on using msiexec by searching Microsoft's learning resources for "msiexec". The following sections describe Revizto-specific parameters and examples for installing Revizto through the command line.
Always remove the current Revizto version before installing a new one from the command line.
Syntax
In addition to the standard msiexec parameters, you can use Revizto-specific parameters in the following format:
PARAMETER="value"The parameter names are case-sensitive. Enclose the values in straight quotation marks and do not add spaces before or after the equal sign.
The following table lists Revizto-specific parameters. For usage examples, see Examples.
| Parameter | Description | Default value |
| PROXY_IS_ON |
Use a proxy server to access Revizto server. Available values:
If you set this parameter to "true", the HOST parameter is required. |
false |
| HOST | The proxy server name, or the proxy server IP address. |
N/A If you skip this parameter, Revizto will not use a proxy server. |
| PORT | The proxy server port number. | 0 |
| PROXYUSERNAME | The proxy server username. | A blank string. |
| PASSWORD | The proxy server password. | A blank string. |
| PLUGINS |
A comma-separated list of plug-ins that you want to install. Available values:
|
The full set of plug-ins. |
| UPDATES_DISABLE |
Disable the check for updates at the start of Revizto. Available values:
|
false |
| NOICONS |
Disable creation of desktop shortcuts for Revizto components. Available value:
|
If you skip this parameter, the installer creates the Revizto and Revizto Scheduler shortcuts. |
Examples
Installation with default parameters
msiexec /i "Revizto.5.17.5.55884.2d76168566e.msi" /q /qn /l*v "log.log"Installation with proxy server setup
msiexec /i "Revizto.5.17.5.55884.2d76168566e.msi" /q /qn /l*v "log.log" PROXY_IS_ON="true" HOST="192.168.1.1" PORT="1345" PROXYUSERNAME="username" PASSWORD="123"Installation with specific plug-ins (Revit and Navisworks)
msiexec /i "Revizto.5.17.5.55884.2d76168566e.msi" /q /qn /l*v "D:\Temp\log.log" PLUGINS="revit,navisworks"Installation with updates disabled
msiexec /i "Revizto.5.17.5.55884.2d76168566e.msi" /q /qn /l*v "D:\Temp\log.log" UPDATES_DISABLE="true"Installation that does not create desktop shortcuts
msiexec /i "Revizto.5.17.5.55884.2d76168566e.msi" /q /qn /l*v "D:\Temp\log.log" NOICONS="true"