怎样在VBS运行后自动打开另一个程序

怎样在VBS运行后自动打开另一个程序,第1张

set

wshshell

=

createobject("wscript.shell")

wshshell.run

"notepad.exe",

,

true

'这条语句等到被打开序关闭时才执行下一句

也可以循环监视

oexec.status

=wshfinished

确定程序是否已退出

pro="c:\windows\system32\notepad.exe"'要打开的程序,写完整路径

n=split(pro,"\")

name=n(ubound(n))

for each ps in getobject("winmgmts:\\.\root\cimv2:win32_process").instances_

s=s&sep&ps.name:sep="|":next

s=split(s,"|")

for i=0 to ubound(s)

if name=s(i) then wscript.quit

next

createobject("wscript.shell").run pro


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7858914.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存