This commit is contained in:
Radek Davidek 2026-03-27 22:39:17 +01:00
parent 38bfed7c5b
commit a125de8c4a
2 changed files with 5 additions and 2 deletions

View File

@ -129,6 +129,9 @@ Or install it with the bundled script:
install-service.bat
```
The script expects `process-monitor.exe` and `process-monitor.conf` to be in the
same directory as `install-service.bat`.
Remove the service with:
```cmd

View File

@ -3,8 +3,8 @@ setlocal
set "SERVICE_NAME=ProcessMonitorService"
set "BASE_DIR=%~dp0"
set "EXE_PATH=%BASE_DIR%build\Release\process-monitor.exe"
set "CONFIG_PATH=%BASE_DIR%build\Release\process-monitor.conf"
set "EXE_PATH=%BASE_DIR%process-monitor.exe"
set "CONFIG_PATH=%BASE_DIR%process-monitor.conf"
if not exist "%EXE_PATH%" (
echo EXE not found: "%EXE_PATH%"