- 论坛徽章:
- 0
|
回复 9# wh21667
再提供匹配session名称的方法
# $language = “VBScript”
# $interface = “1.0″
Sub Main()
crt.screen.Synchronous = true
Dim Name
Dim Nametre
Dim nTabCount
nTabCount = crt.GetTabCount()
for index = 1 to nTabCount
set tab = crt.GetTab(index)
tab.activate
If tab.Session.Connected = True Then
Name = tab.Caption
'开始做匹配,并根据匹配的结果输入相应命令
Select Case Nametre
Case "你的会话的名称1"
'等待1秒钟
crt.sleep 1000
tab.Screen.Send "cmd1" & chr(13)
'等待1秒钟
crt.sleep 1000
tab.Screen.Send "cmd2" & chr(13)
crt.sleep 1000
......
'其它session的case
......
'其它
Case Else MsgBox "the name of this session is wrong!"
End Select
Else
MsgBox "this session is not connected,can not input any command!"
End If
Next
End Sub |
|