How do I find which program is using port 80 in Windows?
I can’t find it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Start menu → Accessories → right click on “Command prompt”. In the menu, click “Run as Administrator” (on Windows XP you can just run it as usual), run
netstat -anb, and then look through output for your program.BTW, Skype by default tries to use ports 80 and 443 for incoming connections.
You can also run
netstat -anb >%USERPROFILE%\ports.txtfollowed bystart %USERPROFILE%\ports.txtto open the port and process list in a text editor, where you can search for the information you want.You can also use PowerShell to parse
netstatoutput and present it in a better way (or process it any way you want):Also it does not require elevation to run.