【发布时间】:2023-03-27 18:06:02
【问题描述】:
我需要通过 2 个不同的 VBScript 渲染输入的帮助。这是我的代码,但我需要一种将 A.vbs 的输入渲染为 B.vbs 的方法,这是我的代码:
Option Explicit
Dim Shell
Set Shell = CreateObject("WScript.Shell")
Speed = InputBox("How long do you have to wait between clicks, in seconds?", "")
Wait = InputBox("How long until this script runs?", "")
msgbox("You have " & Wait & " seconds until this script runs.")
WScript.Sleep (Wait*1000)
Shell.Run "B.vbs"
【问题讨论】:
标签: vbscript