通过自己编码VB脚本,实现连接Linux ssh。
脚本内容如下:
1 Dim WshShell 2 Set WshShell=WScript.CreateObject("WScript.Shell") 3 WshShell.Run "cmd.exe" 4 WScript.Sleep 10000 5 WshShell.SendKeys "ssh <username>@<host>" 6 WshShell.SendKeys "{ENTER}" 7 WScript.Sleep 10000 8 WshShell.SendKeys "<password>" 9 WshShell.SendKeys "{ENTER}"
本地创建脚本后,需要修改脚本,替换脚本中指令参数:
- 替换 <username> 为实际ssh登录用户名
- 替换 <host> 为实际ssh连接主机地址
- 替换 <password> 为实际ssh登录用户密码
实际使用时可调整等待时间