Create a file CheckProg.cmd with this contents:
Code:
:OK
REM wait 10 seconds for an answer. Default answer=n
choice /n /t 10 /d n
tasklist |find "notepad.exe"
IF %errorlevel% EQU 0 GOTO OK
REM Not errorlevel 0 so not running. Restart it.
C:\windows\system32\notepad.exe
GOTO OK
Of course replace notepad.exe with real name. And change C:\windows\system32 to real path. Also change 10 to 900 (15*60) if you want it to check every 15 minutes
Doubleclick CheckProg.cmd and let it run. Works?