How to find open TCP Ports in Windows - 30-Aug-2024
Find open TCP Ports in Windows
With the command netstat -a from the command line,
you can see which connections are currently established. This allows
you to see on which TCP ports the client is communicating with the
servers. If, for example
TCP 10.5.1.12 CRM-SERVER:9001 LISTENING
is displayed, you know that your own client is talking to the
CRM-SERVER on TCP port 9001.
Option 2: netstat command on the Windows
server
You can see the connections on the server in the same way - if you
have administrative access to the server. Simply enter
netstat -a in a command prompt.
The free mini command line tool PortCheck.exe can be used to check a
server for open ports from the client. Basically, you can use it to
query individual ports, but you can also use the command
PortCheck MyServer knownports
to check entire ranges. TCP ports that are displayed here in green
are responding.
>>> Change to the
TCP
Port check PowerShell page