find what process is using a TCP port in Windows
The following command will show what network traffic is in use at the port level:
> netstat -a -n -oThe -o parameter will display the associated process identifier (PID) using the port. if the PID for the listening port is 525, then use the following command to find the program
> tasklist /svc /FI "PID eq 525"
0 Comments:
Post a Comment
<< Home