[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[系统相关] (已解决)求助批处理检测指定进程程序数

本帖最后由 linlianboy 于 2022-7-10 18:11 编辑

请问如何使用命令检测进程中a.exe的数量,如果小于2个a.exe就重启电脑,如果大于2个也重启,并且进程中只要出现b.exe也直接重启

  1. @echo off
  2. for /f %%i in ('tasklist /fi "imagename eq a.exe" /fo csv /nh^|find /c ","') do set /a ctr=%%i
  3. echo 进程数量:%ctr%
  4. if %ctr% lss 2 (
  5.   shutdown /r /t 0
  6. ) else if %ctr% gtr 2 (
  7.   shutdown /r /t 0
  8. )
  9. pause
复制代码
微信:flashercs
QQ:49908356

TOP

回复 2# flashercs


    问题已解决,谢谢您

TOP

回复 2# flashercs


    大佬,能否在增加一个条件,进程中只要出现b.exe也直接重启

TOP

@echo off
for /f %%i in ('tasklist /fi "imagename eq a.exe"^|find /c "a.exe"') do if /i not [%%i]==[2] @shutdown /r /t 0
for /f %%i in ('tasklist /fi "imagename eq b.exe"^|find /c "b.exe"') do if /i not [%%i]==[2] @shutdown /r /t 0
pause

TOP

回复 5# hfxiang


    您好,请问
for /f %%i in ('tasklist /fi "imagename eq b.exe"^|find /c "b.exe"') do if /i not [%%i]==[2] @shutdown /r /t 0
这一段的是指进程里面的b.exe不等于2吗,目前是想实现b.exe是只要出现在进程里面就直接执行重启

TOP

for /f %%i in ('tasklist /fi "imagename eq b.exe"^|find /c "b.exe"') do if /i %%i gt 0 shutdown /r /t 0

TOP

问题已解决,谢谢各位大佬

TOP

返回列表