search
top

Find a process using a port on Windows

Often there are times that you have a port in use and you find that a process is using the port you need to free up or there is a port and you just need to find out who owns it. With Windows it is as easy as using netstat and tasklist commands. Open a command prompt window and type: netstat -a -n -o The -a parameter displays all connections and listening ports, the -n parameter displays the addresses and... read more

top