What are the best ways to determine what port an application is using? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:54:04Zhttp://stackoverflow.com/feeds/question/42146http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using5What are the best ways to determine what port an application is using?Scott A. Lawrence2008-09-03T17:25:54Z2008-09-03T17:45:05Z
<p>This is an adapted version of a question from someone in my office. She's trying to determine how to tell what ports MSDE is running on for an application we have in the field.</p>
<p>Answers to that narrower question would be greatly appreciated. I'm also interested in a broader answer that could be applied to any networked applications.</p>
http://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using/42147#421471Answer by Brian R. Bondy for What are the best ways to determine what port an application is using?Brian R. Bondy2008-09-03T17:27:10Z2008-09-03T17:27:10Z<p>Download currports from <a href="http://www.nirsoft.net/utils/cports.html" rel="nofollow">here</a>.</p>
<p>It will show you which ports are open and which processes are associated with each port.</p>
<p>Scroll down to:
Download CurrPorts</p>
http://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using/42152#421527Answer by Bill the Lizard for What are the best ways to determine what port an application is using?Bill the Lizard2008-09-03T17:29:16Z2008-09-03T17:29:16Z<pre><code>netstat -b
</code></pre>
<p>from the command line will display the application name, process owner, address, and port number used for all running applications.</p>
http://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using/42174#421744Answer by Jeremy for What are the best ways to determine what port an application is using?Jeremy2008-09-03T17:38:50Z2008-09-03T17:38:50Z<p>netstat -b is a great answer, you may need to use the -a option as well.</p>
<p>Without -a netstat shows active connections, with -a it shows listening ports with no active clients as well.</p>
http://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using/42196#421962Answer by Rydell for What are the best ways to determine what port an application is using?Rydell2008-09-03T17:45:05Z2008-09-03T17:45:05Z<p>I've always liked the sysinternals app TCPView, which can now be found <a href="http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx" rel="nofollow">here</a>. Good luck. </p>