Find what application is using certain port in windows

Let say, you want to find what application is using port 80. In the command line

netstat -aon | findstr ":80"

The last number from the result of netstat is the PID (process ID) use that to get the application name using tasklist

tasklist | findstr "16060"

Comments

Popular posts from this blog

Basic Authentication Using .htaccess In Wamp/Xampp Server

Prevent parent anchor tag to redirect when a child is clicked