我正在使用SecureCRT并希望在我在会话中连接时运行vbs脚本,我想通过提示从用户获取站点名称,然后在特定命令中使用此变量(pmxh是特定于会话的命令)将此命令发送到会话,这是我的代码,但我不知道为什么我的回声不工作并返回错误(我只想将pmxh命令发送到终端,我已经打开了会话)
Sub Main()
' Prompt the end user for data
strAnswer = InputBox("Please enter site Name:")
' Check to see if the user provided any data, or canceled.
If strAnswer = "" Then
MsgBox "Canceled."
Exit Sub
End If
wscript.echo("pmxh strAnswer -m 0.25 -a pmTotNoRrcConnectReq")
End Sub