如何在vbs中向终端回显命令

时间:2015-12-14 10:42:36

标签: vbscript secure-crt

我正在使用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

1 个答案:

答案 0 :(得分:1)

我相信您正在寻找activate命令。

crt.Screen.Send

了解有关向终端发送命令的更多信息 - > here(第10页)