How to install IIs 7.5 on Windows 7

This post will guide you through the steps on how to install IIs 7.5 on Windows 7. You must have administrator privileges to perform this operation.

1. Go to Control Panel –> Programs and Features –> Turn Windows features on or off.

Control Panel, Programs and Features, Turn Windows features on or off

2. Put a checkmark in the World Wide Web Services. This will select the most common features for the web server. In my case, I also have selected the ASP.NET, and Basic and Windows Authentication features. Some features may not be available depending on which edition of Windows 7 you have. This article will give an overview on Available Web Server (IIS) Role Services in IIS 7.5 for the various editions.

Turn Windows features on and off, select World Wide Web Services

3. Click Ok and Windows will install the selected features.

Windows makes changes to features.

4. Verify that the installation succeeded by browsing to http://localhost. This should display the IIs logo.

Showing the IIS logo

5. If you have done this after installation Visual Studio 2010 (and .NET Framework v4) you will only have the default .NET v2 application pools:

.NET Framework v2 application pools

so in order to get the .NET Framework v4 integration and application pools, you will have to register the .NET Framework v4 with IIS. Open an elevated command prompt change directory to C:WindowsMicrosoft.NETFrameworkv4.0.30319

and type: aspnet_regiis.exe -i

Now, the .NET Framework v4 application pools are available:

.NET Framework v4 application pools

IIs requirements for installing SQL Server 2005/8 on Windows Vista or Windows 7

In order to install SQL Server 2005 or SQL Server 2008, some IIs features must be installed on Windows Vista.

First, install IIs 7 using the following steps:

  1. Start
  2. Control Panel
  3. Programs
  4. Programs and Features
  5. Turn Windows features on or off
  6. Enable <Internet Information services>

Select these features:

  • Web management tools:
    — IIS 6 Management Compatibility
    —- IIS 6 WMI Compatibility
    —- IIS Metabase and IIS 6 configuration compatibility
  • World Wide Web Services
    — Application Development Features
    — ASP.NET
    — ISAPI Extensions
    — ISAPI Filters
  • Common Http Features
    — Default Document
    — Directory Browsing
    — HTTP Redirection
    — Static Content
  • Security
    — Windows Authentication

image