如何使用批处理文件(.bat)计算进程数

时间:2014-09-19 20:09:46

标签: batch-file process count

例如,我想用名称" chrome.exe"来计算进程数量。如何使用批处理文件并使用ECHO显示它?

3 个答案:

答案 0 :(得分:4)

@echo off

for /f "tokens=1 delims=" %%# in ('qprocess^|find /i /c /n "chrome"') do (
    set number=%%#
)

echo number of chromes: %number%
pause

答案 1 :(得分:3)

tasklist|find /i /c "chrome.exe"

答案 2 :(得分:0)

我得到了像

这样的输出

我的身份没有进程 铬的数量:0 按任意键继续

但如果我检查任务管理器,则会运行很多chrome.exe进程。