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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top