PowerShell Legacy Versions: How to Check Connection of Servers on Certain Ports?
A more updated version is available here. function Check-NetConnection($server, $port) { $session = New-Object System.Net.Sockets.TcpClient;…
0 Comments