我试图用来tasklist
找出哪个进程消耗了我的 CPU 的 X% 以上(稍后用 . 杀死它taskkill
。)
我如何知道时间格式代表的百分比?
文件说:
TASKLIST options
/FI filter
一个过滤器可能是:
CPUTIME eq, ne, gt, lt, ge, le CPU time in the format: hh:mm:ss.
hh - number of hours,
mm - minutes, ss - seconds
如果我尝试
tasklist /FI "CPUTIME gt 00:00:10"
有用。
但如果我
tasklist /FI "CPUTIME gt 90"
它没有。
我怎么知道时间格式代表 90%?还是80%?CPU使用时间和CPU使用百分比有什么关系?