This is an archive version of the document. To get the most up-to-date information, see the current version.

Veeam ONE Agent

To install Veeam ONE agent, use a command with the following syntax:

msiexec.exe [/L*v "<path_to_log>"] /qn /i "<path_to_msi>" [ACCEPT_THIRDPARTY_LICENSES="1"][ACCEPT_EULA="1"][INSTALLDIR="<path_to_installdir >"][VO_AGENT_TYPE="1"][VO_AGENT_SERVICE_ACCOUNT_NAME="<Veeam_One_Service_Account>"][VO_AGENT_SERVICE_ACCOUNT_PASSWORD="<Veeam_One_Service_Account_Password>"][VO_BUNDLE_INSTALLATION="1"] [VO_AGENT_SERVICE_PORT="<agent_port>"]

Important!

Veeam ONE agent server must be installed on the machine that runs Veeam ONE Monitor server.

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 ”

ACCEPT_THIRDPARTY_LICENSES

0/1

Yes

Specifies if you want to accept the terms of the license agreement for the 3rd party components. Specify 1 if you want to accept the terms and proceed with installation.

Example: ACCEPT_THIRDPARTY_LICENSES="1"

ACCEPT_EULA

0/1

Yes

Specifies if you want to accept the terms of the Veeam license agreement.

Specify 1 if you want to accept the terms and proceed with installation.

Example: ACCEPT_EULA="1"

INSTALLDIR

path

No

Installs the component to the specified location. By default, Veeam ONE uses the Veeam ONE Agent subfolder of the C:\Program Files\Veeam\Veeam ONE folder.

Example: INSTALLDIR="C:\Veeam\"

The component will be installed to the C:\Veeam\Veeam ONE Agent folder.

VO_AGENT_TYPE

0/1

Yes

Specifies the mode in which Veeam ONE agent will run. Specify 1 if you want to install Veeam ONE agent server. Specify 0 if you want to install Veeam ONE agent client.

Example: VO_AGENT_TYPE ="1"

VO_AGENT_SERVICE_ACCOUNT_NAME

user

Yes

Specifies a user account under which the Veeam ONE Agent service will run.

Example: VO_AGENT_SERVICE_ACCOUNT_NAME="ONESERVER\Administrator"

VO_AGENT_SERVICE_ACCOUNT_PASSWORD

password

Yes

This parameter must be used if you have specified the VO_AGENT_SERVICE_ACCOUNT_NAME parameter.

Specifies a password for the account that will be used to run Veeam ONE Agent.

Example: VO_AGENT_SERVICE_ACCOUNT_PASSWORD="p@ssw0rd"

VO_BUNDLE_INSTALLATION

0/1

Yes

This parameter must be used if you have specified 1 for the VO_AGENT_TYPE parameter.

Specify 1 to let Veeam ONE Monitor Service know about the installed Veeam ONE agent server.

VO_AGENT_SERVICE_PORT

port

No

Specifies a port that will be used by Monitor to communicate with Veeam ONE Agent. By default, port number 2805 is used.

Example: VO_AGENT_SERVICE_PORT="2805"

Example

Suppose you want to install Monitor Client with the following configuration:

  • Installation log location: C:\ProgramData\Veeam\Setup\Temp\Logs\AgentSetup.txt
  • No user interaction
  • Path to the MSI file: C:\Veeam\Monitor\VeeamONE.Agent.x64.msi
  • Accept 3rd party license agreement
  • Accept Veeam license agreement
  • Installation folder: default
  • Agent mode: server
  • Service user account: ONESERVER\Administrator
  • Service user account password: p@ssw0rd
  • Veeam ONE Agent communication port: default

The command to install Veeam ONE Agent with such configuration will have the following parameters:

msiexec.exe /L*v "C:\ProgramData\Veeam\Setup\Temp\Logs\AgentSetup.txt" /qn /i "C:\Veeam\Monitor\VeeamONE.Agent.x64.msi" ACCEPT_THIRDPARTY_LICENSES="1" ACCEPT_EULA="1" VO_AGENT_TYPE="1" VO_BUNDLE_INSTALLATION="1" VO_AGENT_SERVICE_ACCOUNT_NAME="ONESERVER\Administrator" VO_AGENT_SERVICE_ACCOUNT_PASSWORD="p@ssw0rd"