Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to be able to figure out what port a particular program is using. Are there any programs available online or that come with windows that will tell me which processes are using which ports on my computer?

PS - before you downmod this for not being a programming question, I'm looking for the program to test some networking code.

share|improve this question
4  
Regardless of whether you're going to use this as part of some programming project, it's not a programming problem. – Lightness Races in Orbit Jul 26 '11 at 0:21

11 Answers

up vote 72 down vote accepted

netstat -b -a lists the ports in use and gives you the executable that's using each one. I believe you need to be in the administrator group to do this, and I don't know what security implications there are on Vista.

I usually add -n as well to make it a little faster, but adding -b can make it quite slow.

Edit: If you need more functionality than netstat provides, vasac suggests that you try TCPView.

share|improve this answer
Perfect, thank you! – AlexeyMK Sep 19 '08 at 20:43
If anybody has the rights to edit an answer, consider adding vasac's answer below (TCPView) for anybody that needs a more feature-full version of this with a real gui – AlexeyMK Sep 19 '08 at 20:48
I added the link to TCPView to my answer. – Graeme Perrow Sep 19 '08 at 21:06

TCPView can do what you asked for.

share|improve this answer
1  
Thank you; netstat is more than enough for my needs but if I ever need something more hardcore I'll be sure to use TCPView. Should be added to the accepted answer but alas I don't have the right to Edit yet. – AlexeyMK Sep 19 '08 at 20:47

On Vista, you do need elevated privileges to use the -b option with netstat. To get around that, you could run "netstat -ano" which will show all open ports along with the associated process id. You could then use tasklist to lookup which process has the corresponding id.

C:\>netstat -ano

Active Connections

  Proto  Local Address          Foreign Address        State           PID
  ...
  TCP    [::]:49335             [::]:0                 LISTENING       1056
  ...

C:\>tasklist /fi "pid eq 1056"

Image Name                     PID Session Name        Session#    Mem Usage
========================= ======== ================ =========== ============
sqlservr.exe                  1056 Services                   0     66,192 K
share|improve this answer

If your prefer a GUI interface CurrPorts is free and works with all versions of windows. Shows ports and what process has them open.

share|improve this answer
another good alternative. wow, didn't know this was such a popular subject :) – AlexeyMK Sep 19 '08 at 21:15

You may already have Process Explorer (from Sysinternals, now part of Microsoft) installed. If not, go ahead and install it now -- it's just that cool.

In Process Explorer: locate the process in question, right-click and select the TCP/IP tab. It will even show you, for each socket, a stack trace representing the code that opened that socket.

share|improve this answer

most decent firewall programs should allow you to access this information. I know that Agnitum OutpostPro Firewall does.

share|improve this answer

At a command line, netstat -a will give you lots o' info.

share|improve this answer
I'd vote this up if I had any votes left. – UnkwnTech Sep 19 '08 at 20:42
-1: -a doesn't give process ID – CharlesB Jun 1 '11 at 16:01

Windows comes with the netstat utility, which should do exactly what you want.

share|improve this answer

You can use the 'netstat' command for this. There's a description of doing this sort of thing here.

share|improve this answer

"netstat -natp" is what I always use.

share|improve this answer

Open Ports Scanner works for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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