我想知道是否可以通过命令行或批处理文件打开服务的http会话。 我想要实现的是检查特定服务是否允许多于x个活动连接。
注意:我无法在生产计算机上安装任何实用程序。
此致 Prayag
答案 0 :(得分:0)
嗯......您可以尝试通过telnet编写连接到您的网络服务器的VBS文件并请求根页。
创建一个.vbs
文件并放入此内容。然后从提示符处执行它。
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd"
WScript.Sleep 100
WshShell.SendKeys "telnet www.yahoo.com 80~" 'subst www.yahoo.com with your host
WScript.Sleep 5000
WshShell.SendKeys "GET / HTTP/1.0~~"
WScript.Sleep 2000
WshShell.SendKeys "^C~" 'close telnet
WScript.Sleep 1000
WshShell.SendKeys "exit~" 'close prompt