tangdong 发表于 2009-8-31 05:50:27

用VBS代替手工输入,通过telnet实现一键搞定

本帖最后由 tangdong 于 2009-8-31 05:55 编辑

把附件中的两个文件解压到同一目录,执行start.bat

tangdong 发表于 2009-8-31 05:54:08

set sh=WScript.CreateObject("WScript.Shell")   
WScript.Sleep 1000

sh.SendKeys "open 192.168.100.1{ENTER}"         ROS ip地址
sh.SendKeys "admin{ENTER}"                              用户名
WScript.Sleep 1000                                                延迟一秒
sh.SendKeys "xxxxxxxx{ENTER}"                           密码
WScript.Sleep 1000
sh.SendKeys "sy{ENTER}"                                 下面就不用说了吧!!
WScript.Sleep 1000
sh.SendKeys "reboot{ENTER}"
WScript.Sleep 1000
sh.SendKeys "y{ENTER}"

feilang 发表于 2009-8-31 08:13:48

就是省了输入命令的麻烦?
页: [1]
查看完整版本: 用VBS代替手工输入,通过telnet实现一键搞定