What are the best ways to determine what port an application is using? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:54:04Z http://stackoverflow.com/feeds/question/42146 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/42146/what-are-the-best-ways-to-determine-what-port-an-application-is-using 5 What are the best ways to determine what port an application is using? Scott A. Lawrence 2008-09-03T17:25:54Z 2008-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#42147 1 Answer by Brian R. Bondy for What are the best ways to determine what port an application is using? Brian R. Bondy 2008-09-03T17:27:10Z 2008-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#42152 7 Answer by Bill the Lizard for What are the best ways to determine what port an application is using? Bill the Lizard 2008-09-03T17:29:16Z 2008-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#42174 4 Answer by Jeremy for What are the best ways to determine what port an application is using? Jeremy 2008-09-03T17:38:50Z 2008-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#42196 2 Answer by Rydell for What are the best ways to determine what port an application is using? Rydell 2008-09-03T17:45:05Z 2008-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>