Hello.
I'm trying to use tasklist to find out wich process is consuming more than X percent of my CPU ( to later kill it with taskkill )
My question is: How to I know what percent does a time format represents?
The documentations says:
TASKLIST options
/FI filter
And one filter may be:
CPUTIME eq, ne, gt, lt, ge, le CPU time in the format: hh:mm:ss.
hh - number of hours,
mm - minutes, ss - seconds
If I try:
tasklist /FI "CPUTIME gt 00:00:10"
It works
but if I
tasklist /FI "CPUTIME gt 90"
It doesn't
How can I know that time format represent 90%? Or 80?
Edit:
Additional question: What's the relationship between cpu usage time and the cpu usage percent?
