How To Start Application when not running

665 Views Asked by At

I am running my node.js application exe file on windows 7/10 startup. It is working fine but some cases my exe stops working and is closed automatically. I want to create some scheduled job for checking whether my exe is running or not. If not running start the application and if running do nothing.

Please guide me to create this kind of schedule job with 10 minutes.

1

There are 1 best solutions below

0
On BEST ANSWER

@ECHO OFF tasklist | find /i "app.exe" && echo process Already running || START "app.exe" "path"

create batch file using above code and use task scheduler for monitoring the exe is running