I am trying to launch a program which is uses port 29178 but it won't start up because it says the port is already in use. Netstat gives me this

C:\Rush>netstat -aon | findstr 29178
  TCP    0.0.0.0:29178          0.0.0.0:0              LISTENING       4
  TCP    [::]:29178             [::]:0                 LISTENING       4

and process 4 is

Name                Pid Pri Thd  Hnd   Priv        CPU Time    Elapsed Time
System                4   8 154 5280    120     0:01:55.269     0:37:14.169

which tells me what exactly? Is Windows using this? How do I know what feature is using it or how to turn it off/change it?

link|improve this question
feedback

2 Answers

Turns out that I had a website setup in IIS that had a binding to this port. I'm not sure why it reports it as the System process though and not w3wp.exe.

link|improve this answer
1  
Some IIS components have been converted to kernel-mode drivers in recent versions, including probably the HTTP server. – grawity Jan 4 at 15:04
feedback

I honestly cannot say what it is... 29178 isn't a standard port for anything I know of. As it's the system process that's listening on that port... I suspect you may have a bug on your machine... or perhaps whatever program you are trying to setup is already running... and the windows-firewall is blocking connections to it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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