Hello all,
I want to monitor a windows application (developed with windows forms),
and make sure that the application is always running.
The windows application should open on startup.
If because of an application crash or if someone closes the window, the application should automatically open.
I think I need a windows service or something, which continuously monitors the said application.
If closed, the monitoring software should immediately open the application again.
How can I achieve this?
Can I monitor windows executables using a windows service??
Thank you for helping me out.
Loading
Akkiraju IvaturiPosted Jan 15, 2013, 11:11 AM
I would recommend custom windows service as it has many advantages over the Task Scheduler (as far as I know of). You can customize your windows service with whatever is required for logging and starting up the windows app when it is crashed or dead.