up vote 34 down vote favorite
14
share [g+] share [fb]

How can you find out which process is listening on a port on Windows?

link|improve this question

feedback

5 Answers

up vote 33 down vote accepted
C:\> netstat -a -b

(add -n to stop it trying to resolve hostnames, which will make it a lot faster)

Edit: +1 for Dane's recommendation for TCPView. Looks very useful!

link|improve this answer
feedback

Use TCPView if you want a GUI for this. It's the old Sysinternals app that Microsoft bought out.

link|improve this answer
feedback
netstat -aon | find /i "listening"
link|improve this answer
I just tried this and it doesn't show any process info. – J c Oct 14 '08 at 14:56
"doesn't show any process info" huh? it shows process ids of all listening processes. If you need name of process, use Brad's solution – aku Oct 15 '08 at 4:04
My bad, didn't see the PID as I was looking for the process name. – J c Oct 17 '08 at 12:01
+1 for showing the pid – vladr Mar 28 '11 at 20:16
feedback

If you'd like to use a GUI tool to do this there's SysInternals TCPView.

link|improve this answer
feedback

I agree with Dave Webb - SysInternals tools for sure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.