批处理脚本:判断进程是否存在

批处理脚本:判断进程是否存在

@ECHO OFF 
:check ntaskldr.exe                                        
tasklist >list.txt                 // 将所有进程信息列入list.txt文件里面(这里默认当前目录)
find /i "ntaskldr.exe" list.txt    // 从list.txt文件里查找ntaskldr.exe这个进程
if "%errorlevel%"=="1" (goto f) else (goto e)    // 如果进程不存在,执行f处的代码;反之执行e处的代码                                                                                                            
:f
taskkill /f /im DSMDaemon.exe      // 杀掉进程
:e
cls
:check cmd.exe    // 由于上面杀进程后会留下cmd.exe没有退出,并一起kill cmd.exe
tasklist >list2.txt
find /i "cmd.exe" list2.txt
if "%errorlevel%"=="1" (goto e)
:e
taskkill /f /im cmd.exe
:end
exit

 

 

 

 

你可能感兴趣的:(软件开发)