怎么在VBS脚本中运行多个程序,但是在窗口里选择运行其中一个或者多个程序

2025-01-06 17:06:16
推荐回答(1个)
回答1:

dim a
set ms=createobject("wscript.shell")
a=inputbox("a = 记事本"+chr(13)+"b = 命令行提示符","请输入","a")
if a="a" then
ms.run "notepad.exe"
else if a="b" then
ms.run "cmd.exe"
end if
end if