Versions Compared

Key

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

...

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'


Enable Installer Logging

A full list of logging options are available here.

...