Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to display the CPU percentage usage by each process in cmd

i want to a cmd windows command to display the all the processes and the cpu percentage for each process. is there a command which give me this result? can you help me please? thank you

like image 775
ofloflofl Avatar asked Oct 28 '25 08:10

ofloflofl


1 Answers

Try pslist from the SysInternals-powered pstools.

You will need to download them from that link and put the tools in your cmd directory (or chdir to wherever they are).

Use -s to see the CPU usage of each process.

like image 53
AlexDev Avatar answered Oct 30 '25 15:10

AlexDev