Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installation Commands
Anchor
InstallCommands
InstallCommands

To install a program the VSM Everywhere client, via your preferred command-line interface, use the following stringlines:

Code Block
languageyml
// 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' 

...

Tip

You can omit the path to the installer MSI by changing the working directory in the command-line interface to where the installer is located.

To change directory in Command Prompt use :

Code Block
languageyml
// Command Prompt
> cd "C:\Path\To\Installer\Location"

// Powershell
> Set-Location 'C:\Path\To\Installer\Location'


See the sections below to enable installation logging, set which collector the VSM Everywhere client should connect to, and what group the client should be a part of.

Enable Installer Logging
Anchor
Logging
Logging

A full list of logging options are available here.

...

Code Block
languageyml
// Command Prompt
> msiexec /i "C:\Path\To\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 /qn /norestart /L*v C:\path\to\install.log'

CGWS Argument
Anchor
Collector
Collector

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.

...

Code Block
languageyml
// Command Prompt
> msiexec /i "C:\Path\To\MachineProxyAgentE_Installer.msi" /qn /norestart /L*v "C:\path\to\install.log" CGWS="192.10.10.10:6226;192.10.10.15:2662"

//Powershell
> Start-Process msiexec.exe -Wait -ArgumentList '/i C:\Path\To\MachineProxyAgentE_Installer.msi /qn /norestart /L*v C:\path\to\install.log CGWS=192.10.10.10:6226;192.10.10.15:2662'

GROUP Argument
Anchor
Group
Group

The GROUP argument takes the group name of a group configured inside of a web portal. If VSM Everywhere is installed with no group name, or if the collector could not find the requested group, the default group will be used instead.

...