标题: 怎么写个检测进程批处理? [打印本页] 作者: fjyxian 时间: 2007-4-2 23:16 标题: 怎么写个检测进程批处理? @echo off
dir/b D:\网络游戏\QQ幻想\*.exe >游戏进程.txt
for /f %%a in (游戏路径.txt) do set 游戏路径=%%a
for /f %%b in (游戏进程.txt) do set 游戏进程=%%b
tasklist > a.txt
type a.txt | find /i "%游戏进程%" && goto b
goto f
:a
upgame.exe /now 1 e:\sysset\ d:\sysset\
start %游戏路径%
goto c
:b
start %游戏路径%
goto c
:c
del /s/q a.txt