Monitor Client
To install Veeam ONE Monitor client, use a command with the following syntax:
msiexec.exe [/L*v "<path_to_log>"] /qn /i "<path_to_msi>" [VM_CLN_SERVER_NAME="<monitor_server_address>"] |
The command has the following parameters:
Option | Parameter | Required | Description |
---|---|---|---|
/L | *v logfile | No | Creates an installation log file with the verbose output. Specify an existing path to the log file as the parameter value. A setup log file created during the previous installation is cleared. Example: /L*v ”C:\ProgramData\Veeam\Setup\Temp\Logs\MonitorClientSetup.txt” |
/q | n | Yes | Sets the user interface level to “no”, which means no user interaction is needed during installation. |
/i | setup file | Yes | Installs Veeam ONE Monitor Client. Specify a full path to the setup file as the parameter value. Example: /i “C:\Veeam\Monitor\veeam_monitor_cln_x64.msi ” |
VM_CLN_SERVER_NAME | server name or address | No | Specifies FQDN or IP address of the server where Veeam ONE Monitor is deployed. Example: VM_CLN_SERVER_NAME=“oneserver.tech.local" |
Example
Suppose you want to install Monitor Client with the following configuration:
- Installation log location: C:\ProgramData\Veeam\Setup\Temp\Logs\MonitorClientSetup.txt
- No user interaction
- Path to the MSI file: C:\Veeam\Monitor\veeam_monitor_cln_x64.msi
- Veeam ONE Monitor server: oneserver.tech.local
The command to install Monitor Client with such configuration will have the following parameters:
msiexec.exe /L*v "C:\ProgramData\Veeam\Setup\Temp\Logs\MonitorClientSetup.txt" /qn /i "C:\Veeam\Monitor\veeam_monitor_cln_x64.msi" VM_CLN_SERVER_NAME="oneserver.tech.local" |