One way to get the list of needed roles and features for the Web Console is the run the Prerequisite Viewer.
I then select more, under “Microsoft World Wide Web Service should be running and set to automatic startup mode”
Here is what it says:
For Windows Server 2008, you must add the Web Server (IIS) role and then install the following server role services:
- IIS 6 Metabase Compatibility
- IIS 6 WMI Compatibility
- Static Content
- Default Document
- Directory Browsing
- HTTP Errors
- ASP.NET
- .NET Extensibility
- ISAPI Extensions
- ISAPI Filters
- Request Filtering
- Windows Authentication
I could go to Server Manager and add the individual roles and features, but I am running Server 2008 R2 so lets make it super simple with PowerShell V2.
1. Launch the PowerShell command prompt
2. Run this command
Import-Module ServerManager3. Press Enter
4. Run this command
Add-WindowsFeature NET-Framework-Core,Web-Metabase,Web-WMI,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Filtering,Web-Windows-Auth –restart5. Press Enter
I then see
Now all I need to do is install the ASP.NET Ajax Extensions 1.0 from here http://go.microsoft.com/fwlink/?LinkID=89064&clcid=0×409
No comments:
Post a Comment