I can't seem to stop IIS (or whatever it is) running on port 80 on windows 7.
I've stopped all sites on IIS, as well as all application pools.
As the Administrator, I've tried:
net stop IIsadmin
net stop w3svc
When I telnet to localhost, on 80, I can attempt "GET index.html"
I get this (as expected)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Not Found</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Not Found</h2>
<hr><p>HTTP Error 404. The requested resource is not found.</p>
</BODY></HTML>
When I telnet, but send garbage ( "asdf" ), I get:
HTTP/1.1 400 Bad Request
Content-Type: text/html; charset=us-ascii
Server: Microsoft-HTTPAPI/2.0
Date: Wed, 26 Oct 2011 23:23:41 GMT
Connection: close
Content-Length: 326
How can I make whatever this is running no longer run?