How can we able to check whether any application, which uses Port 80 in Windows XP ?
Asked
Active
Viewed 406 times
0
-
1Using what programming language? From the command line, `netstat -b` should work. – Thorarin Apr 04 '13 at 05:51
-
see my complete solution,about it in this link:http://stackoverflow.com/questions/2158432/wamp-port-80-busy – amin k Apr 29 '13 at 09:18
1 Answers
1
Use netstat -aon
and look for the address ending in :80 and note the corresponding PID in the same row. Then go to task manager (CTRL-ALT-DEL), click Processes tab and under View click Select Columns then check PID (Process Identifier). The PID in Processes that matches PID from netstat -aon is listening on your port.
Skype, which is a very common app running in the background, is a common cause of port 80 being occupied.

Andreas3204
- 132
- 1
- 9