To find out which application using given ports
Go to a command prompt and run:
netstat -a -n -p tcp -b
This will show all services running, protocol used, local and foreign address, state and PID (process identifier).
examples
NETSTAT -p tcp -ano
netstat -p tcp -ano | findstr :21
No comments