关于一个能自动运行某个程序的VBS脚本

2024-12-23 09:12:20
推荐回答(2个)
回答1:

dim fso,oshell,path1
path1 = "g:\share\jw\run.exe"
set oshell = wscript.createobject ("wscript.shell")
set fso = createobject("scripting.filesystemobject")
if (fso.fileexists(path1)) then
oshell.run path1
oshell.run "cmd /k rarp.BAT" '把这句加上就行了
else
end if

回答2:

可以使用这样的方式:
运行文件后,输入框(默认)显示:你,然后自动关闭,
之后第二输入框(默认)显示:你我,然后自动关闭,
随后第三输入框(默认)显示:你我他,停止。