PID not shown under Services in the Task Manager on Windows 8

0

I'm trying to run a program that defaults to port 9000 but there is an unknown source using that port. I found the PID by using,

    netstat -aon | more

and went to the task managers service tab where I can see all the other PID's that were listed with the above command but the PID corresponding to port 9000 is not listed. What is going on here and what can I do to terminate whoever is using this port?

I am using Windows 8.1 and I followed this tutorial to do the steps I mentioned, http://mywindows8.org/check-which-tcpip-ports-are-in-use/#comment-519600

Kyle Bridenstine

Posted 2014-07-08T13:26:10.003

Reputation: 189

Answers

0

netstat has a habit of not showing all program owners. Try TCPView instead. This is especially true if "System" is the owner of the thread the port is being used on which is possible since some services do run under the "System" process.

Nathan C

Posted 2014-07-08T13:26:10.003

Reputation: 2 522

wait...the PID of the process was 9000? Was the port and the PID 9000? I'm confused. – Nathan C – 2014-07-08T14:59:02.603

Opps no my mistake I used a bad example for the PID I think it was like 8390 or something. – Kyle Bridenstine – 2014-07-08T15:00:53.913