One way to test for an open port is to use telnet
telnet [hostname] [port]
However, telnet is not installed by default, hence if you don't have administrative privileges, it can be problematic.
It seems there is a better option - open powershell and run
tnc [hostname] -port [port]
It is a alias to Test-NetConnection and has a few more options.