批处理判断多个进程是否存在,运行程序。。。。。。。。。。。。。。。。。。
举例,当a进程存在时,运行D:/1.exe;当进程b存在时,运行D:/2.exe;当ab进程都存在时,运行D:/3.exe;当ab进程都不存在时,运行D:/4.exe。...
举例,当a进程存在时,运行D:/1.exe;当进程b存在时,运行D:/2.exe;当ab进程都存在时,运行D:/3.exe;当ab进程都不存在时,运行D:/4.exe。
展开
1个回答
展开全部
@echo off
set APP1=a.exe
set APP2=b.exe
set Pr=0
for /f "tokens=1 delims= " %%a in ('tasklist ^| findstr /i "%APP1% %APP2%"') do (
set APP=%%~a
set /a Pr+=1
)
if %Pr% equ 1 (
if /i "%APP%"=="%APP1%" start "" "D:\1.exe"
if /i "%APP%"=="%APP2%" start "" "D:\2.exe"
)
if %Pr% equ 2 start "" "D:\3.exe"
if %Pr% equ 0 start "" "D:\4.exe"
pause
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询