-
Install Self-signed SSL with IIS 6.0
Posted on September 23rd, 2010 Add commentsThe IIS 6.0 resource kit is provided by Microsoft for installing a self-signed testing certificate into IIS. To install it, do follow:
- Download IIS 6.0 resource kit tools from Here
- Install the resource kit, but only for Windows Server 2003 or Windows XP
- Go to Start Menu -> All Progrem -> IIS resource -> SelfSSL, click “SelfSSL”
- In the pop-up command prompt, type “selfssl” to run the program
- Type “Y” to apply the setting to the website in IIS
- Test your website by using URL “https://user_website”
705 views
-
Multiple websites in IIS on Windows XP Pro
Posted on August 17th, 2010 Add commentsUnlike Windows Server Edition, XP pro does not support multiple websites in IIS. However, we still can use several ways around this.
First option, just use IIS Admin, a simple program developed by a third-party developer for this purpose. (Download From Here)
The second option is to use adsutil.vbs, located in the folder “C:\Inetpub\AdminScripts”:12345C:\Inetpub\AdminScripts> adsutil.vbs ENUM /P W3SVC#(Find out what the highest numbered site you currently have is)C:\Inetpub\AdminScripts> adsutil.vbs create_vserv W3SVC/x#(Create a new website, Add one to the highest numbered site)Where x is replaced by the new numbered site. For example if you run the first command and the highest numbered site is 4, then replace x to 5.
12C:\Inetpub\AdminScripts> adsutil.vbs copy W3SVC/1 W3SVC/x#(Copy website 1 to website x)The third option is to use Metabase Explorer from the IIS 6.0 Resource Kit Tools.Copy the default website (/LM/W3SVC/1/) and then paste it. This will also give you another website, ready to use. (Download From Here)
Also we can delete the website using adsutil.vbs, Metabase Explorer or ADSI/WMI. To delete a website using adsutil.vbs, write this in a command prompt:1C:\Inetpub\AdminScripts> adsutil.vbs delete W3SVC/x
606 views
Recent Comments