telnet 远程登录脚本(免用户名和面膜手动输入)

介绍Xp上的脚本,linux的各位看管自己琢磨。

可以参考:Linux操作系统下三种方式实现自动Telnet


建立一个telnet.vbs脚本文件:

set sh=WScript.CreateObject("WScript.Shell") 
WScript.Sleep 1000 
sh.SendKeys "c:{ENTER}" 
WScript.Sleep 1000 
sh.SendKeys "cd C:\Documents and Settings\Administrator{ENTER}" -------------------以上2个步骤是确保在admin 目录下来执行telnet命令
WScript.Sleep 1000 
sh.SendKeys "telnet{ENTER}" 
WScript.Sleep 1000 
sh.SendKeys "open 192.168.1.1 4719{ENTER}" ------------------目标IP及端口
WScript.Sleep 1000 
sh.SendKeys "admin{ENTER}" --------------用户名
WScript.Sleep 1000 
sh.SendKeys "admin{ENTER}" --------------密码
WScript.Sleep 1000 
sh.SendKeys "ls {ENTER}"


创建 autotelnet.bat文件

start cmd.exe
rem batch telnet 192.168.1.1显示信息
cscript //nologo telnet_tmp.vbs



你可能感兴趣的:(telnet 远程登录脚本(免用户名和面膜手动输入))