当前位置:网站首页>一键登陆服务器脚本

一键登陆服务器脚本

2022-08-09 07:24:00 哈希疯

复制以下代码,另存为后缀vbs文件

Dim WshShell 
Set WshShell=WScript.CreateObject("WScript.Shell") 
WshShell.Run "cmd.exe"
WScript.Sleep 1500 
WshShell.SendKeys "ssh [email protected]"
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1500 
WshShell.SendKeys "password"
WshShell.SendKeys "{ENTER}"
原网站

版权声明
本文为[哈希疯]所创,转载请带上原文链接,感谢
https://blog.csdn.net/yu57955/article/details/119710943