Tagged Questions
23
votes
2answers
11k views
How can I verify if a Windows Service is running
I have an application in C# (2.0 running on XP embedded) that is communicating with a 'watchdog' that is implemented as a Windows Service. When the device boots, this service typically takes some time ...
4
votes
3answers
510 views
C# remote watchdog
We have a number of services (mostly console applications) running across several remote computers.
I need to implement some form of a watchdog to make sure all these services are running as ...
2
votes
1answer
113 views
Watch dog for blocking function call
I have a closed-source API for some hardware sensor that I use to query that sensor. The API comes as DLL that I use through C# interop. The API's functions are blocking. They usually return error ...
0
votes
1answer
306 views
Windows Mobile - Capture Application/Process Termination Event
I need to create Watchgog application that will keep track of main application. If my main application is crashed/closed/ended by any means, this watchdog application will activate it again.
I can do ...