Howto: See if a local port is listening from command prompt
List local/remote socket and PID for all TCP connections in “Established” state: netstat -ano | find /i “established” List local/remote socket for all TCP connections in “Established” state (sometimes you get more than above): netstat -an | find /i “established”…