Processes and services?

Conejo

Well-known member
Joined
Jul 24, 2013
Messages
65
Location
USA
Programming Experience
1-3
Hi,
I need to show the following info about processes in my app,

number of processes running
number of services active
physical memory

help is appreciated thanks.
 
The first and third would be able to be accomplished using the System.Diagnostics.Process class but I would think that you'd need to use WMI for the second, which is implemented via the System.Management namespace.
 
Back
Top