vote up 16 vote down star

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

flag

5 Answers

vote up 14 vote down check
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|flag
vote up 1 vote down

I agree with Dave Webb - SysInternals tools for sure.

link|flag
vote up 3 vote down

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

link|flag
vote up 12 vote down

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

link|flag
vote up 3 vote down
netstat -aon | find /i "listening"
link|flag
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

Your Answer

Get an OpenID
or

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