Veeam Service Provider Console Web UI
To install Veeam Service Provider Console web UI, 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"][ACCEPT_REQUIRED_SOFTWARE="1"][ACCEPT_LICENSING_POLICY="1"][VAC_SERVER_NAME="<product_server_name>"][INSTALLDIR="<path_to_installdir >"] [VAC_SERVER_PORT="<port_number>"] [VAC_WEBSITE_PORT="<port_number>"] [VAC_CONFIGURE_SCHANNEL="1"] [VAC_SERVER_ACCOUNT_NAME="<server_account_name>"] [VAC_SERVER_ACCOUNT_PASSWORD="<server_account_password>"] |
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\VACWebUISetup.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 Service Provider Console web UI. Specify a full path to the setup file as the parameter value. Example: /i “C:\WebUI\VAC.WebUI.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" |
ACCEPT_LICENSING_POLICY | 0/1 | Yes | Specifies if you want to accept the terms of the Veeam licensing policy. Specify 1 if you want to accept the terms and proceed with installation. Example: ACCEPT_LICENSING_POLICY="1" |
ACCEPT_REQUIRED_SOFTWARE | 0/1 | Yes | Specifies if you want to accept the terms of the required software license agreements. Specify 1 if you want to accept the terms and proceed with installation. Example: ACCEPT_REQUIRED_SOFTWARE="1" |
INSTALLDIR | path | No | Installs the component to the specified location. By default, Veeam Service Provider Console uses the Web UI subfolder of the C:\Program Files\Veeam\Availability Console folder. Example: INSTALLDIR="C:\Veeam\" The component will be installed to the C:\Veeam\Web UI folder. |
VAC_SERVER_NAME | server name or address | Yes | Specifies FQDN or IP address of the server where Veeam Service Provider Console server is deployed. Example: VAC_SERVER_NAME=“vac.cloudprovider.com" |
VAC_SERVER_PORT | port | No | Specifies the port number that the Veeam Service Provider Console Web UI component uses to communicate with the Server component. If you do not use this parameter, Veeam Service Provider Console Web UI component will use the default port 1989. Example: VAC_SERVER_PORT="102" |
VAC_WEBSITE_PORT | port | No | Specifies the port number used to transfer traffic between Veeam Service Provider Console Web UI component and a web browser. If you do not use this parameter, Veeam Service Provider Console Web UI component will use the default port 1280. Example: VAC_WEBSITE_PORT="106" |
VAC_CONFIGURE_SCHANNEL | 0/1 | No | Specifies if the High security mode option must be used for the Veeam Service Provider Console Web UI installation. The option enforces TLS 1.2 encryption protocol and disables using weak ciphers for all communications with the machine on which Veeam Service Provider Console Web UI component runs. Specify 1 to enable High security mode. Specify 0 to proceed with installation without enabling High security mode. If you do not use this parameter, Veeam Service Provider Console Web UI component will use the High security mode by default. Example: VAC_CONFIGURE_SCHANNEL="1" |
VAC_SERVER_ACCOUNT_NAME | user | Yes | Specifies a user account under which the Veeam Service Provider Console Web UI will connect to Veeam Service Provider Console Server in the Microsoft Windows authentication mode. Example: VAC_SERVER_ACCOUNT_NAME="VSPC\Administrator" |
VAC_SERVER_ACCOUNT_PASSWORD | password | Yes | Specifies a password for the account under which the Veeam Service Provider Console Web UI will connect to Veeam Service Provider Console Server. Example: VAC_SERVER_ACCOUNT_PASSWORD="p@ssw0rd" |
Example
Suppose you want to install Veeam Service Provider Console web UI with the following configuration:
- Installation log location: C:\ProgramData\Veeam\Setup\Temp\Logs\VACWebUISetup.txt
- No user interaction
- Path to the MSI file: C:\WebUI\VAC.WebUI.x64.msi
- Accept 3rd party license agreement
- Accept Veeam license agreement
- Accept Veeam licensing policy
- Accept required software agreements
- Installation directory: default
- Communication ports: default
- Secure connection: enabled
- Veeam Service Provider Console Server account: vspc01\administrator
- Veeam Service Provider Console Server account password: p@ssw0rd
The command to install Veeam Service Provider Console Web UI with such configuration will have the following parameters:
msiexec /qn /l*v C:\ProgramData\Veeam\Setup\Temp\Logs\VACWebUISetup.txt /i "C:\WebUI\VAC.WebUI.x64.msi" VAC_SERVER_NAME="vac.cloudprovider.com" ACCEPT_THIRDPARTY_LICENSES="1" ACCEPT_EULA="1" ACCEPT_REQUIRED_SOFTWARE="1" ACCEPT_LICENSING_POLICY="1" VAC_CONFIGURE_SCHANNEL="1" VAC_SERVER_ACCOUNT_NAME="vspc01\administrator" VAC_SERVER_ACCOUNT_PASSWORD="p@ssw0rd" |