Run the following windows CMD commands in order to see what is using a specific port:
Command:
netstat -a -n -o
A list of port applications using ports will display with PID numbers.
Now type the following command to see what service is utilizing a specific port.
Command:
tasklist /svc /FI "PID eq ####"
(Reference: ####= PID listed in netstat command for port 47232)
This can be used to see if any other applications are trying to utilize the publishing port we utilize for communication.
Comments
Please sign in to leave a comment.