码迷,mamicode.com
首页 > 系统相关 > 详细

批处理:根据进程名称查询进程,如果有进程就输出up没有就输出donw

时间:2018-10-13 02:40:43      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:...   second   hat   echo   level   名称   error   div   pre   

需求:windows系统上  根据进程名称查询进程,如果有进程就输出 up ,没有就输出  donw.

::Final interpretation is owned by chenglee
::@echo off<nul 3>nul
@echo off&title Checking For SystemProcess, Thankyou...
:2
color 0E
wmic process get name | findStr /i "chat*"
::if not "%%a"=="%num%" goto en1
IF ERRORLEVEL 1 goto 1
IF ERRORLEVEL 0 goto 0
   
:0
echo.UP!!
echo.Process exists, Exit after 5 seconds...
::进程存在,5秒后退出,如果不想退出的话,删掉下面的exit, 加上goto 2.
choice /t 5 /d y /n >nul
exit
   
:1
echo.DOWN!!
echo.Process does not Exist, 5 Seconds later, Continue to judge...
::进程不存在,5秒后继续判断.
choice /t 5 /d y /n >nul
goto 2
pause
exit

  

完成!!

 

批处理:根据进程名称查询进程,如果有进程就输出up没有就输出donw

标签:...   second   hat   echo   level   名称   error   div   pre   

原文地址:https://www.cnblogs.com/chenglee/p/9781116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!