Tagged Questions

2
votes
3answers
3k views

How do I code a watchdog timer to restart a Windows service?

I'm very interested in the answer to another question regarding watchdog timers for Windows services (see here). That answer stated: I have also used an internal watchdog system running in another ...
1
vote
1answer
54 views

Watchdog Python script for Windows file system

I would like to write a small notification script using python watchdog for windows. The script should do - watch a directory and when ever file is created - trigger an exe passing filename as ...
0
votes
2answers
33 views

Windows .Net application crash watchdog

i'm creating a little kiosk application for a exhibition installation. i develop in .Net & C# and the computer will run Windows 7. Now, what's the easiest way to setup some kind of watchdog that ...
0
votes
1answer
91 views

Watchdog an application from a service

How can I make a service to be a watchdog for a desktop application knowing that Services cannot/shouldn't interact with Desktop applications. Or is it only working assuming there is only one user?
0
votes
1answer
142 views

Watchdog built into the same process as the program it controls

I run a Visual C++ console test program inside the daily build. Every now and then the test would call some function that was changed by other developers improperly, descend into an infinite loop and ...