PowerShell で telnet と同様なポートの確認をする場合、Windows 8.1 / Windows Server 2012 R2 以降であれば、Test-NetConnection で確認することができます。
PS C:\Users\hoge> Test-NetConnection www.google.co.jp -Port 443
実行結果
ComputerName : www.google.co.jp
RemoteAddress : 142.250.196.131
RemotePort : 443
InterfaceAlias : イーサネット
SourceAddress : 192.168.1.100
TcpTestSucceeded : True
ポートが利用できない場合 Connection が failed となる。
PS C:\Users\hoge> Test-NetConnection www.google.co.jp -Port 443
警告: TCP connect to (142.25.196.131 : 22) failed
ComputerName : www.google.co.jp
RemoteAddress : 142.250.196.131
RemotePort : 22
InterfaceAlias : イーサネット
SourceAddress : 192.168.1.100
PingSucceeded : True
PingReplyDetails (RTT) : 9 ms
TcpTestSucceeded : False