Windows – What’s the netstat command to get the process name and only for a specific port

netstatportwindows

I'm using netstat on Windows 7, I would like to get only the process which are using the port 80 and to get also the name of the process. Not only the PID.

I've found this solution to add the process name netstat with process name? but I cannot find how to filter for a specific door.

Best Answer

I've found a possible solution on a question which is on StackOverflow (maybe it should be migrated here?)

https://stackoverflow.com/a/12010927/196210

It leads to this solution, which is not totally fitting, but better than nothing:

netstat -anob | find ":80"
Related Question