Skip to content

Create the Windows Service

Codeweavers Infrastructure edited this page Sep 2, 2021 · 2 revisions

The Windows Installer (MSI) will automatically create the service. If you would like to do it manually:

  1. Open an administrative Command Prompt
  2. Run sc create "Monitoring Agent" start= auto error= critical binpath= c:\somefolder\monitoring-agent.exe

To remove the service:

  1. Open an administrative Command Prompt
  2. Run sc delete "Monitoring Agent"

Read the security page before using Monitoring Agent in a production environment.

Clone this wiki locally