怎么建一个判断进程是否存在的bat或vbs!
发布网友
发布时间:2022-05-06 19:16
我来回答
共2个回答
热心网友
时间:2023-09-12 07:21
根据自己的需要代码中启动文件的路径.
set pro = getobject("winmgmts:\\.").instancesof("Win32_Process")
boo = 0
for each ps in pro
if ps.name = "123.exe" then boo = 1
next
if boo = 1 then createobject("wscript.shell").run "c:\1.bat" else createobject("wscript.shell").run "c:\2.exe"
热心网友
时间:2023-09-12 07:22
@echo off
tasklist|find "123.exe"&&start "" "" .\234.exe"||start "" ".\256.exe"
exit