How to disable System service from listening on port 80 in Windows Server 2003

Posted by Miky D on Server Fault See other posts from Server Fault or by Miky D
Published on 2010-05-13T01:06:13Z Indexed on 2010/05/13 1:14 UTC
Read the original article Hit count: 274

I'm trying to install a service on a Windows Server 2003 machine which is supposed to listen on port 80 but it fails to start because some other service is already listening on that port. So far I've disabled the IIS Admin service and the HTTP SSL service but no luck.

When I run netstat -a -n -o | findstr 0.0:80 it gives me the process id 4 as the culprit, but when I look at the running processes that process id points to the "System" process.

What can I do to get the System process to stop listening on port 80 and get my service to listen instead?

© Server Fault or respective owner

Related posts about windows-server-2003

Related posts about Services