Monitor Other Applications Status

  • Thread starter Thread starter Admin East
  • Start date Start date
A

Admin East

I want to create an application which monitor other applications
status. It is same as Windows Task Manager's Application Tab. Status
would be RUNNING or NOT RESPONDING.

Thanks.
 
Use the System.Diagnostics namespace, there's a Process object that does
what you want. You can enumerate all processes using GetProcesses(), then
for each you can check the IsResponding property.
 
Back
Top