Files
docs/operations/reference/batch/Blue Iris/Server Watchdog.md
Nicole Rappe daf24d7480
All checks were successful
GitOps Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 5s
GitOps Automatic Documentation Deployment / Sync Docs to https://docs.bunny-lab.io (push) Successful in 7s
Mass-File and Folder Renaming
2026-02-24 20:26:52 -07:00

564 B

tags
tags
Blue Iris
Batch
Monitoring
Scripting
Windows
@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