windows里判断进程是否启动

@echo off

SET JC1=rtx.exe
SET JC2=keepass.exe

tasklist /nh|find /i "%JC1%"
if ERRORLEVEL 1 (Msg %username% %JC1%不存在,请启动此进程。)

tasklist /nh|find /i "%JC2%"
if ERRORLEVEL 1 (Msg %username% %JC2%不存在,请启动此进程。)
 

你可能感兴趣的:(ERRORLEVEL)