批处理和VBS检测进程是否存在并执行相关操作
发布网友
发布时间:2022-06-18 20:24
我来回答
共2个回答
热心网友
时间:2024-03-18 04:04
tasklist/nh|find/i"ClientOfWatcher.exe"ifERRORLEVEL1(startC:\watcher\ClientOfWatcher.exe)else(exit)VBS定时检测进程是否存在,如果不存在就启动进程。
热心网友
时间:2024-03-18 04:04
on error resume nextset
y=getobject("winmgmts:\\.\root\cimv2")
set ws=createobject("wscript.shell")
set x=y.execquery("select * from win32_process where name='BaiHi.exe'")
for each i in x
msgbox "BaiHi进程存在"
wscript.quit
next
msgbox "BaiHi进程不存在"