tags:

views:

589

answers:

1

I'd like to use WMI on some windows systems to poll the network usage of each process. From what I can tell, there are many IO instances in the Win32_PerfRawData_PerfProc_Process but they are for the combined IO of network,disk,and device. Is there a way to break that up so I can get network and disk IO separate?

+1  A: 

If you don't have to use WMI there are some possibilities defined here (stackoverflow) to get the info.

PaulB