关于vbs的一个求教
这是一个登陆电信机房OLT,准备给新装光纤猫做数据在一小段程序,就是自动登陆后,第一个命令有时运行时间太长,所以第二个命令就不完整了,就是想在第一个命令运行完等1、2秒,再运行第二个命令。第一个命令是:display ont autofind all 第二个命令是:interface gpon 0/,以下是原程序# $language = "VBScript"
# $interface = "1.0"
Sub Main
crt.screen.WaitForString "User name:",10
crt.screen.send "root"
crt.screen.send Chr(13)
crt.screen.WaitForString "User password:",10
crt.screen.send "admin"
crt.screen.send Chr(13)
crt.screen.send "enable"
crt.screen.send Chr(13)
crt.screen.send "config"
crt.screen.send Chr(13)
crt.screen.send "display ont autofind all"
crt.screen.send Chr(13)
crt.screen.send "interface gpon 0/"
End Sub