IIS disable use of port 443

IIS disable use of port 443

am 14.09.2005 20:48:21 von E Garcia

I want to change IIS is it does not use port 443. IIS Properties for
443 is greyed out. How do I keep IIS from listening on port 443?
I'm using Windows 2000 Advanced Server (IIS6). Thanks in advance for
your help.

Re: IIS disable use of port 443

am 14.09.2005 21:43:48 von Kristofer Gafvert

Hello,

You can use adsutil.vbs to change this. Open up a command prompt and
navigate to C:\inetpub\adminscripts and type:

cscript adsutil.vbs set w3svc//securebindings ""

where should be replaced with the website ID. You can find this ID by
doing this:

In IIS Manager, right click the website and click properties. On the "Web
Site" tab, click the Properties button (for logging). At the bottom you
will see the number right after W3SVC.

If you later want to change back this property, type this:

cscript adsutil.vbs set w3svc//securebindings ":443:"

Hope this helps.

By the way, you do not have IIS 6.0 installed on Windows 2000 Advanced
Server. It is IIS 5.0!

--
Regards,
Kristofer Gafvert (IIS MVP)
http://www.gafvert.info/iis/ - IIS Related Info


E Garcia wrote:

>I want to change IIS is it does not use port 443. IIS Properties for
>443 is greyed out. How do I keep IIS from listening on port 443?
>I'm using Windows 2000 Advanced Server (IIS6). Thanks in advance for
>your help.

Re: IIS disable use of port 443

am 15.09.2005 10:47:10 von IISMVP2005

I would assume that if it is grayed out then it is not listening on 443.



--

cheers

Chris

Chris Crowe [IIS MVP]
http://blog.crowe.co.nz


"E Garcia" wrote in message
news:eW0HizVuFHA.1028@TK2MSFTNGP12.phx.gbl...
>I want to change IIS is it does not use port 443. IIS Properties for
> 443 is greyed out. How do I keep IIS from listening on port 443?
> I'm using Windows 2000 Advanced Server (IIS6). Thanks in advance for
> your help.

Re: IIS disable use of port 443

am 15.09.2005 18:13:56 von E Garcia

Chris Crowe [IIS MVP] wrote:

> I would assume that if it is grayed out then it is not listening on
> 443.


You would think so but kernel32.dll has port 443 open. When I stop the
WWW service, port 443 closes.

Re: IIS disable use of port 443

am 15.09.2005 18:14:53 von E Garcia

Thanks, after issuing the command, port 443 is no longer showing up in
netstat.


Kristofer Gafvert [MVP] wrote:

> Hello,
>
> You can use adsutil.vbs to change this. Open up a command prompt and
> navigate to C:\inetpub\adminscripts and type:
>
> cscript adsutil.vbs set w3svc//securebindings ""
>
> where should be replaced with the website ID. You can find this
> ID by doing this:
>
> In IIS Manager, right click the website and click properties. On the
> "Web Site" tab, click the Properties button (for logging). At the
> bottom you will see the number right after W3SVC.
>
> If you later want to change back this property, type this:
>
> cscript adsutil.vbs set w3svc//securebindings ":443:"
>
> Hope this helps.
>
> By the way, you do not have IIS 6.0 installed on Windows 2000
> Advanced Server. It is IIS 5.0!