Windows 中的自动化 telnet 会话不起作用
您好,我创建了一个文件 temp.txt
,其内容如下
root root123 ls -lrt exit
,然后我在 dos 中执行以下命令
c:\>telnet machine_ip < temp.txt
,输出是
Welcome to the Microsoft Telnet client Escape character is 'ctrl+]' C:\> Telnet>
如何使用此方法在 Windows 中自动执行 telnet 会话。我无法使用任何其他 exe(putty.exe) 或工具来执行此操作。我必须使用windows xp中可用的东西。如果还有其他方法,也请建议我。
Hi I have created a file temp.txt
with the the content as below
root root123 ls -lrt exit
and then I am excuting the below command in dos
c:\>telnet machine_ip < temp.txt
Output is
Welcome to the Microsoft Telnet client Escape character is 'ctrl+]' C:\> Telnet>
How to automate the telnet session in windows with this method. I cant use any other exe(putty.exe) or tool to do this. I have to use the available things in windows xp. Suggest me also if any other way is there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您是否可以将
用户名
和密码
传递给telnet
程序来自文本文件
。您可以创建一个
vbs脚本
并使用sendkeys
传递用户名
和密码。
创建一个
batch
脚本,启动盒子的telnet
会话,然后从batch
脚本调用vbs
脚本使用希望这有帮助!
I am not sure if you can pass the
username
andpassword
totelnet
program from atext file
.You can create a
vbs script
and usesendkeys
to passusername
andpassword
.Create a
batch
script which starts atelnet
session of a box and then call thevbs
script from thebatch
script usingHope this helps!