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
Post a Comment