怎么建一个判断进程是否存在的bat或vbs! 10
怎么建一个判断进程是否存在的批处理!就是说.要建一个批处理想达到有判断进程能力的.比方说.要判断123.exe这个进程有没在运行.要是有的话就自动运行234这个批处理或v...
怎么建一个判断进程是否存在的批处理!
就是说.要建一个批处理想达到有判断进程能力的.
比方说.要判断123.exe这个进程有没在运行.要是有的话就自动运行234这个批处理或vbs..
和判断123.exe这个进程有没在运行.没有的话就自动运行256这个批处理或脚本.
这个以前我有看到过一个vbs还是bat有这个能力的.时间久了不知道放哪里了.
各位大侠..知道的指导下谢谢..
百度千篇一律的复制者请别浪费你的时间和我的时间.谢谢..
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"
这个我试了下好像不可以呢..是我搞错了吗??路径都设好的了啊 展开
就是说.要建一个批处理想达到有判断进程能力的.
比方说.要判断123.exe这个进程有没在运行.要是有的话就自动运行234这个批处理或vbs..
和判断123.exe这个进程有没在运行.没有的话就自动运行256这个批处理或脚本.
这个以前我有看到过一个vbs还是bat有这个能力的.时间久了不知道放哪里了.
各位大侠..知道的指导下谢谢..
百度千篇一律的复制者请别浪费你的时间和我的时间.谢谢..
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"
这个我试了下好像不可以呢..是我搞错了吗??路径都设好的了啊 展开
2个回答
展开全部
根据自己的需要代码中启动文件的路径.
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"
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"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询