Activate Win7 First
And then open the Control Panel.
Programs and Functions
Turn window features on and off
will open the Windows features window,
Find Internet Information Services,
Open the plus point in front of the Internet Information Service,
Find the Web Administration tool,
Select the IIS Management Service, IIS management scripts and tools, and the IIS management Console.
Then click on the World Wide Web service to open the application development function,
Select:. NET extensibility, ASP, ASP.net, ISAPI extensions, ISAPI filters,
If you want to install PHP, you need to also select the CGI.
And then dot Microsoft.NET Framework3.5.1 under the
Select WCF HTTP actived (that is, Windows Process Activation service)
When these are selected, the other defaults can be followed by the point OK. Windows has started installing IIS
If the installation is complete, there is no default Web site creation and when I try to add a new Web site,
There are no options in the following type of binding section to select Dropdown, if not: Http,ftp and so on.
The following solutions can be used:
Method One: Modify the configuration file
In the file of Window\system32\inetsrv\config\aplicationhost.xml (config)
The HTTP listeneradapters node was added as follows:
Copy Code code as follows:
<listenerAdapters>
<add name= "http"/>
</listenerAdapters>
After you save the XML configuration file and restart IIS
To create a new Web site, the following binding type will have an HTTP binding type.
Method Two: Reinstall
Re-install
Microsoft.NET Framework3.5.1 under the
Select WCF HTTP actived (that is, Windows Process Activation service)
Find the Web Administration tool,
Reinstall the selected IIS Management Service, IIS management scripts and tools, and the IIS management Console.
Then click on the World Wide Web service to open the application development function,
Select:. NET extensibility, ASP, ASP.net, ISAPI extensions, ISAPI filters,
If you want to install PHP, you need to also select the CGI.
You can try it again.
--the End---