...
Follow the instructions detailed inside of the Prepare Win32 app content for upload article with the MachineProxyAgentE_Installer.msi installer.
Add A Win32 App
...
For "Step 2: Program" in the above tutorial, use the Installations Commands section on this page to define your install and uninstall commands.
Note |
---|
Use the following GUID for the uninstall command: {FCC97786-7AD7-49B0-98C2-131F864C6BA1} . I.e. the uninstall command will be: Code Block |
---|
| msiexec /x "{FCC97786-7AD7-49B0-98C2-131F864C6BA1}" |
|
For "Step 4: Detection Rules" use the "File" option and check for the folder "C:\Program Files\Virsae Group\Machine Proxy Agent E".
...
Note |
---|
Logs will only be available if installations have FAILED. |
App Availability and End User Notifications
To control what notifications an end-user receives and when the VSM Everywhere client should be installed by, see the section linked here: "Set Win32 app availability and notifications".
Installation Commands Anchor |
---|
| InstallCommands |
---|
| InstallCommands |
---|
|
...
Code Block |
---|
|
// 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" GROUP="NZ/AUS"
//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=NZ/AUS' |
Uninstall Command
To uninstall the VSM Everywhere Client from a command line, use one of the following commands.
Code Block |
---|
|
// Command Prompt
> msiexec /x "C:\Path\To\MachineProxyAgentE_Installer.msi" /qn /norestart /L*v "C:\path\to\uninstall.log"
//Powershell
> Start-Process msiexec.exe -Wait -ArgumentList '/x C:\Path\To\MachineProxyAgentE_Installer.msi /qn /norestart /L*v C:\path\to\uninstall.log' |
Changing Communication Port Between Collector and VSM Everywhere (Optional)
...