...
- An up-to-date collector that has connected to the Virsae platform and is reachable by remote workers.
- A copy of the silent installer.
- Configured a group in the web portal
- Administrator-level permissions on the machine where the client will be installed.
Getting What You Need
If you do not have one or any of the above-mentioned requirements, the following sections will provide instructions on how to meet these requirements.
...
The installer accepts all of the default command line arguments provided by an MSI, as well as two additional arguments: CGWS and GROUP.
You can use either Command Prompt or PowerShell to install.
Installing Via Command Prompt
To get started with the installation we need to open Command Prompt in administrator mode.
First, press the Windows Key on your keyboard or click the Start icon on your taskbar.
Next search for "Command Prompt".
Find the "Command Prompt" option in the results.
Next press "Run As Administrator"
After opening the command-line interface, use the Installation Commands section to create an installation string.
Install Via Powershell
To get started with the installation we need to open Powershell in administrator mode.
First, press the Windows Key on your keyboard or click the Start icon on your taskbar.
Next search for "Powershell".
Find the "Powershell" option in the results.
Next press "Run As Administrator"
After opening the command-line interface, use the Installation Commands section to create an installation string.
Installation Commands Anchor InstallCommands InstallCommands
InstallCommands | |
InstallCommands |
To install a program via the your preferred command-line interface use the following string:
Code Block | ||
---|---|---|
| ||
// Command Propmt > msiexec /i "C:\Path\To\MachineProxyAgentE_Installer.msi" /qn /norestart //Powershell > Start-Process msiexec.exe -Wait -ArgumentList '/i C:\Path\To\MachineProxyAgentE_Installer.msi /qn /norestart' |
Enable Installer Logging
A full list of logging options are available here.
For ease of reference, you can activate verbose logging using the /L*v switch.
Code Block | ||
---|---|---|
| ||
// Command Prompt > msiexec /i MachineProxyAgentE_Installer.msi /qn /norestart /L*v "C:\path\to\install.log" //Powershell > Start-Process msiexec.exe -Wait -ArgumentList '/i C:\Path\To\MachineProxyAgentE_Installer.msi /L*v "C:\path\to\install.log /qn /norestart' |
CGWS Argument
CGWS takes a semi-colon separated list of IP addresses or Fully Qualified Domain Names (FQDNs) that represent the location of collectors that a VSM Everywhere client can connect to.
...