There are several ways you can display the current TCP connections on a Windows Server. Here are a few options you can try:
netstat -ano
This will display a list of active TCP connections, along with the local and remote address and port number for each connection, the process ID of the process that owns the connection, and the connection status. The "-a" option shows all connections, including those in the listening state, and the "-n" option displays the addresses and port numbers in numerical form rather than trying to resolve them to hostnames. The "-o" option displays the process ID for each connection.
This will add a new "TCP Connection State" column to the Task Manager, which displays the status of each process's TCP connections.
This will open a new window that displays a list of current TCP connections, along with the local and remote address and port number, the process ID of the process that owns the connection, and the connection status.
It is important to note that these methods will only show active TCP connections. If you want to see closed or terminated connections, you may need to use additional tools or techniques.