Jump to content

How Can I Tell What is Listening on a TCP/IP Port in Windows?


Batu69

Recommended Posts

ximg_5464d431b033d.png.pagespeed.ic.q4PW

​Whenever an application wants to make itself accessible over the network, it claims a TCP/IP port, which means that port can’t be used by anything else. So if you need to use an in-use port, how do you tell what application is holding it?

There’s a number of ways to tell what application has the port locked, but we’ll walk through the built-in way using the command line and Task Manager, and then a great freeware application that does it all in one utility.

________________________________________________________________________________________

Use Built-In Tools to See What is Listening on a Port

The first step is to use a command-line tool to see what ports are in use, and use a special flag that tells us which port is assigned to each Windows process identifier number. Then we can use that number to look up exactly which process it is.

Open up a command prompt and type in the following—you may have to open in Administrator mode to see all processes:

netstat -ab | more

​This will immediately show you a list, although it’s maybe a little complicated. You’ll see the process name in the list, and you can search for it.

You can also use this other method, which takes an extra step, but makes it easier to locate the actual process:

netstat -aon | more

If you look on the right-hand side, you’ll see where I’ve highlighted the list of PIDs, or Process Identifiers. Find the one that’s bound to the port that you’re trying to troubleshoot—for this example, you’ll see that 0.0.0.0:80, or port 80, is in use by PID 4708.

640x262ximage108.png.pagespeed.ic.DFyH0a

​Now you can simply open up Task Manager—you might have to use the option to Show Processes for All Users, and then you’ll be able to find the PID in the list. Once you’re there, you can use the End Process, Open File Location, or Go to Service(s) options to control the process or stop it.

508x592ximage109.png.pagespeed.ic.S85uFp

Use CurrPorts to View What is Listening

If you aren’t really the command-line type, or you’d rather just use a simple utility to do it all in one step, you can use the excellent freeware CurrPorts utility by NirSoft, one of our favorite freeware authors.

Just open up the utility, and you can see everything—processes, ports, remote ports, the full path to the process.

640x299ximage110.png.pagespeed.ic.6LdHof

​If you double-click on any of the items, you’ll see every single detail.

620x681ximage112.png.pagespeed.ic.knPPQS

You can also use CurrPorts to directly kill the process if you want.

​Download CurrPorts: http://www.nirsoft.net/utils/cports.html

​Credit to: http://www.howtogeek.com/

Link to comment
Share on other sites


  • Views 976
  • Created
  • Last Reply

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...