Page 1 of 1

How to TEST network connection and TEST open Ports using PowerShell

Posted: 18 May 2022, 10:10
by hepek
How to TEST network connection and TEST open Ports using PowerShell

Using FQDN:

Code: Select all

Test-NetConnection tool.hepek.local -Port 3389
Using IP Address:

Code: Select all

Test-NetConnection 192.168.0.10 -Port 3389
Test-NetConnection_PowerShell.PNG