Question: How can I diagnose a connection using a Powershell cmdlet ? Answer: A handy Powershell cmdlet is Test-NetConnection An example usage : 1) testing Ping Connectivity Test-NetConnection google.com -port 80 ComputerName : google.com RemoteAddress : 142.250.187.238 RemotePort : 80 InterfaceAlias : Ethernet 2 SourceAddress : 11.111.111.10 TcpTestSucceeded : True for more detailed information : Test-NetConnection
Read more →