Windows – List running processes with CPU and network usage in command line

command linewindows

How do I find the list (only prints each time called) of running processes with its CPU usage, and network usage in command line on Windows?

I know tasklist.exe but that doesn't have CPU/network usage.

Any command line tools online that can do this? Preferably those which can also sort according to CPU/network usage.

Best Answer

"typeperf" is your man. Try typeperf /? for the usage. It gives all the counters that are available in perfmon on the command line.

Related Question