Update Scripts/Batch/Blue Iris/Server_Watchdog.md
This commit is contained in:
22
Scripts/Batch/Blue Iris/Server_Watchdog.md
Normal file
22
Scripts/Batch/Blue Iris/Server_Watchdog.md
Normal file
@ -0,0 +1,22 @@
|
||||
``` batch
|
||||
@echo off
|
||||
|
||||
REM Change to the Blue Iris 5 directory
|
||||
CD "C:\Program Files\Blue Iris 5"
|
||||
|
||||
:LOOP
|
||||
REM Check if the BlueIrisAdmin.exe process is running
|
||||
tasklist /FI "IMAGENAME eq BlueIris.exe" | find /I "BlueIris.exe" >nul
|
||||
|
||||
REM If the process is not found, start the process
|
||||
if errorlevel 1 (
|
||||
REM Start BlueIrisAdmin.exe
|
||||
BlueIrisAdmin.exe
|
||||
)
|
||||
|
||||
REM Wait for 10 seconds before checking again
|
||||
timeout /t 10 /nobreak >nul
|
||||
|
||||
REM Go back to the beginning of the loop
|
||||
GOTO :LOOP
|
||||
```
|
Reference in New Issue
Block a user