码迷,mamicode.com
首页 > Windows程序 > 详细

在Windows批处理程序中使用WIMC 查找正在运行的进程

时间:2016-04-02 22:57:19      阅读:614      评论:0      收藏:0      [点我收藏+]

标签:

@echo off

:SLEEP
TIMEOUT /T 60 /NOBREAK

:CHECK
echo %TIME% | findstr 23:5 >nul
if not errorlevel = 1 goto END

WMIC PROCESS WHERE NAME="java.exe" get commandline | findstr /i helloworld >nul
if not errorlevel goto RUNNING

:RUN
cd /D W:\external\input\input-trigger
if exist *-* (
    echo %date% - %time% - trigger file exist, start up the run.bat >>d:\temp\log.txt
    call d:\apps\run.bat
    goto SLEEP
) else (
    echo %date% - %time% - trigger file does not exist >>d:\temp\log.txt
    goto SLEEP
)

:RUNNING
echo %date% - %time% - helloworld is running >>d:\temp\log.txt
goto SLEEP

:END

在Windows批处理程序中使用WIMC 查找正在运行的进程

标签:

原文地址:http://www.cnblogs.com/wencle/p/5348494.html

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