PowerShell to Test Open Ports (Telnet)

PowerShell to Test Open Ports (Telnet)

​From the Start Menu
Click Start, type PowerShell, and then click Windows PowerShell

Test-NetConnection command
 
passagepoint requires 2 ports to be open (2080, 9876)


Using IP address
Test-NetConnection -ComputerName 192.168.1.1 -Port 2080

For example, if your computer IP address  is name "192.168.1.1" and you wanted to test port "2080", it would look like this:
Test-NetConnection -ComputerName 192.168.1.1 -Port 2080

For example, if your computer IP address  is name "192.168.1.1" and you wanted to test port "9876", it would look like this:
Test-NetConnection -ComputerName 192.168.1.1 -Port 9876

or


Using Computer Name
Test-NetConnection -ComputerName hostname -Port 443

For example, if your computer is name "HoustonServer" and you wanted to test port "1920", it would look like this:

Test-NetConnection -ComputerName HoustonServer -Port 1920


if open you will get True like this: