How do I detect if a process is already running under the Windows Task Manager? I'd like to get the memory and cpu usage as well.
|
feedback
|
|
Simple example...
Oops... forgot the mem usage, etc...
(I'll leave the mechanics of getting the data out of the method to you - it's 17:15 here, and I'm ready to go home. :) | ||||
|
feedback
|
|
You can use System.Diagnostics.Process Class. There is a GetProcesses() and a GetProcessesByName() method that will get a list of all the existing processes in an array. The Process object has all the information you need to detect if a process is running. | |||
|
feedback
|
|
You could use WMI to query something along the lines of
Especially processor usage is a bit tricky with WMI, though. You are probably better off with System.Diagnostics.Process, as Ian Jacobs suggested. | |||
|
feedback
|
|
If you wanted to find out about the IE Processes that are running:
| |||
|
feedback
|
|
Something like this:
| |||
|
feedback
|