Install Typical IIS Workloads
原文 Install Typical IIS Workloads
Introduction
The IIS 7.0 and above modular architecture is designed to enable the IT professional to customize exactly which features are installed and running on the Web server. IIS is now factored into more than 40 feature modules that can be independently installed on the box, dramatically reducing the potential attack surface, while lowering the footprint requirements, and minimizing patching and security risks.
To take full advantage of this modular architecture, you should plan your IIS installation to match the requirements of the applications you will be deploying. Doing so will minimize the IIS features you install, allowing you to take advantage of the benefits of the IIS modular architecture. We will start by considering several common workload configurations and then look at ways they can be combined and modified.
This article contains:
- Prerequisites
- Principle IIS Workloads
- ASP.NET Workload
- Install Classic ASP Workload
- Install FastCGI for PHP
- IIS 7.0 and Above Full Install
- Adding Diagnostics
- Adding Security Features
- Management Features for Local and Remote Administration
- Summary
Prerequisites
This article discusses installing IIS 7.0 and above on Vista and Windows Server® 2008. This article will not instruct you on how to use the Vista / Windows Server 2008 install technologies; specific details on using setup user interfaces or command line tools to install IIS can be found at:
- Installing IIS 7.0 on Windows Server 2008
- Installing IIS 7.0 on Windows Vista
- Installing IIS 7.0 from the Command Line
- Using Unattended Setup to Install IIS
Principle IIS Workloads
In this section we will consider several common workloads that typify task specific installations of IIS. These workloads can serve as starting points for customizing an IIS install to meet your specific needs.
The common IIS workloads we will consider are:
- Default Install - Static Content web Server
- ASP.NET
- Classic ASP
- Fast CGI for PHP
- IIS Full Install
Combining and Modifying Workloads
In IIS, you are free to choose the exact features to install to match your workload. In the section above we examined several typical workloads that an IIS web server may be configured with. Combining workloads is a simple process of adding the features of one or more workloads together into your install.
It is also possible to modify these workloads by removing features that you do not want to allow, for example Directory Browsing, or by adding additional features such as authentication or authorization.
Additional sections will provide guidance on adding support for local and remote management, security, diagnostic, and IIS 6.0 compatibility to the common workloads.
Default Install - Static Content Web Server
The Static content web server is the most basic and commonly used installation profile and is commonly used in conjunction with other workloads. The pre-selected setup defaults of IIS provide all the IIS modules required to support this workload. This includes the ability to serve static html files, documents, and images. Additionally support for default document, directory browsing, logging and anonymous authentication is provided. The IIS Management Console is also installed.
To install IIS features for Static Content Web Server from the Vista/Windows Server 2008 setup user interface, select the following IIS features by UI name:
UI Name |
Update Name |
---|---|
Static Content |
IIS-StaticContent |
Default Document |
IIS-DefaultDocument |
Directory Browsing |
IIS-DirectoryBrowsing |
HTTP Errors |
IIS-HttpErrors |
HTTP Logging |
IIS-HttpLogging |
Logging Tools |
IIS-LoggingLibraries |
Request Monitor |
IIS-HttpTracing |
Request Filtering |
IIS-RequestFiltering |
Static Content Compression |
IIS-HttpCompressionStatic |
IIS Management Console |
IIS-ManagementConsole |
To install IIS features for Static Content Web Server via pkgmgr.exe use the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Static Content Web Server via ServerManagerCmd.exe use the following command line:
ServerManager–install Web-Server
ASP.NET Workload
Since its first release ASP.NET has been the platform of choice for developing web applications on the Windows / IIS platform. IIS takes ASP.NET to the next level, by integrating the ASP.NET runtime extensibility model with the core server. This allows developers to fully extend the IIS server with the richness of ASP.NET 2.0 and the .NET Framework. For a full overview of how ASP.NET functionality can now be used with all IIS features see the article: ASP.NET Integration with IIS7 and Above.
The ASP.NET workload extends the static content workload by adding modules for ASP.NET, .NET Extensibility, Request Filtering, ISAPI Filters, and ISAPI Extensions.
To install IIS features for ASP.NET from the Vista/Windows Server 2008 setup user interface, select the following IIS features by UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
ASP.NET |
IIS-ASPNET |
.NET Extensibility |
IIS-NetFxExtensibility |
Request Filtering |
IIS-RequestFiltering |
ISAPI |
IIS-ISAPIFilter |
ISAPI Extensions |
IIS-ISAPIExtensions |
To install IIS features for ASP.NET along with features for Static Content Web Server via pkgmgr.exe, use the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-ApplicationDevelopment;IIS-ASPNET;IIS-NetFxExtensibility;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for ASP.NET via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-ASP-Net
ServerManagerCmd-install Web-Net-Ext
ServerManagerCmd-install Web-Filtering
ServerManagerCmd-install Web-ISAPI-Filter
ServerManagerCmd-install Web-ISAPI-Ext
It is possible to install support for .NET Extensibility and managed
modules without installing support for ASP.NET. Using the IIS .NET
Extensibility feature, developers can build solutions that add value for
all application components, such as custom authentication schemes,
monitoring and logging, security filtering, load balancing, content
redirection, and state management. Learn more in article Developing a Module using .NET.
To install IIS features for Managed Modules from the Vista/Windows
Server 2008 setup user interface, select the following IIS features by
UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
.NET Extensibility |
IIS-NetFxExtensibility |
To install IIS features for Managed Modules along with features for
Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-ApplicationDevelopment;IIS-NetFxExtensibility;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Managed Modules via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Net-Ext
Install Classic ASP Workload
The widely used classic ASP workload for serving server side scripted
.asp pages builds on the static content workload by adding modules for
ASP, Request Filtering, and ISAPI Extensions.
To install IIS features for Classic ASP from the Vista/Windows Server
2008 setup user interface, select the following IIS features by UI name
(in addition to features for static content):
UI Name |
Update Name |
---|---|
ASP |
IIS-ASP |
Request Filtering |
IIS-RequestFiltering |
ISAPI Extensions |
IIS-ISAPIExtensions |
To install IIS features for Classic ASP along with features for
Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-ApplicationDevelopment;IIS-ASP;IIS-ISAPIExtensions;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Classic ASP via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-ASP
ServerManagerCmd-install Web-Filtering
ServerManagerCmd-install Web-ISAPI-Ext
Install FastCGI for PHP
FastCGI provides a high-performance alternative to the Common Gateway
Interface (CGI), a standard way of interfacing external applications
with Web servers that has been supported as part of the IIS feature-set
since the very first release.
FastCGI overcomes the performance penalty of traditional CGI by
re-using CGI processes to service subsequent requests, while continuing
to ensure single request concurrency. For more information on how
FastCGI works, see article Using FastCGI to Host PHP Applications on IIS 7.0 and Above.
To install IIS features for CGI and Fast CGI from the Vista/Windows
Server 2008 setup user interface, select the following IIS features by
UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
CGI |
IIS-CGI |
To install IIS features for CGI and FastCGI along with features for
Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-ApplicationDevelopment;IIS-CGI;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for CGI and FastCGI via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-CGI
IIS 7.0 and Above Full Install
As a developer or one who is just evaluating IIS you may simply just
want to install all 40 of the IIS features: This will certainly assure
that you're not missing anything; but realistically, even in a
development environment there are advantages to limiting your install to
just the features needed for your intended application. Doing your
development on a partial install of IIS will assure that you have an
understanding of your application's IIS module dependencies. It may also
be true that the target servers that your IIS applications will be
deployed on will not be configured with a full install. Matching the IIS
install on your development machine to that of your target hosting
machine will assure your application can run as expected when deployed.
To install all IIS features from the Vista/Windows Server 2008 setup
user interface, select the all IIS features displayed in the setup UI.
To install all IIS features via pkgmgr.exe, use the following command
line:
start /w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HttpRedirect;IIS-ApplicationDevelopment;IIS-ASPNET;IIS-NetFxExtensibility;IIS-ASP;IIS-CGI;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-ServerSideIncludes;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-HttpTracing;IIS-CustomLogging;IIS-ODBCLogging;IIS-Security;IIS-BasicAuthentication;IIS-WindowsAuthentication;IIS-DigestAuthentication;IIS-ClientCertificateMappingAuthentication;IIS-IISCertificateMappingAuthentication;IIS-URLAuthorization;IIS-RequestFiltering;IIS-IPSecurity;IIS-Performance;IIS-HttpCompressionStatic;IIS-HttpCompressionDynamic;IIS-WebServerManagementTools;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-ManagementScriptingTools;IIS-ManagementService;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility;IIS-LegacyScripts;IIS-LegacySnapIn;IIS-FTPPublishingService;IIS-FTPServer;IIS-FTPManagement;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install all IIS features via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server-a
Adding Diagnostics
The default static content workload includes HTTP logging and Request
Monitor features for logging requests and monitoring request execution,
but there are additional IIS 7.0 features you can use to enhance IIS
logging and tracing capabilities:
- Tracing
- Custom Logging
- ODBC Logging
Of these features, Tracing provides a powerful way new to debug and
diagnose IIS application issues in production environments as well as in
development environment. (See article Troubleshooting Failed Requests using Tracing in IIS7 and Above
) The Custom Logging and ODBC Logging features exist for IIS 6.0
compatibility and you should only need to install them if you have
existing IIS 6.0 that take advantage of these features.
To install the IIS Tracing feature from the Vista/Windows Server 2008
setup user interface, select the following IIS features by UI name (in
addition to features for static content):
UI Name |
Update Name |
---|---|
Tracing |
IIS-HttpTracing |
To install IIS features for Tracing along with features for Static
Content Web Server via pkgmgr.exe, use the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-HttpTracing;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Tracing via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Http-Tracing
Adding Security Features
IIS always includes support for anonymous authentication, no special
setup actions need be specified to get this support. If you do not want
to allow anonymous authentication it can be disabled from the Management
Console. In addition to anonymous authentication, IIS supports many
optional authentication and authorization mechanisms to allow you to
best secure your web sites.
IIS Authentication Features
To install IIS features for authentication from the Vista/Windows
Server 2008 setup user interface, select among following IIS features by
UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
Basic Authentication |
IIS-BasicAuthentication |
Windows Authentication |
IIS-WindowsAuthentication |
Digest Authentication |
IIS-DigestAuthentication |
Client Certificate Mapping Authentication |
IIS-ClientCertificateMappingAuthentication |
IIS Client Certificate Mapping Authentication |
IIS-IISCertificateMappingAuthentication |
To install IIS features for authentication along with features for
Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-BasicAuthentication;IIS-WindowsAuthentication;IIS-DigestAuthentication;IIS-ClientCertificateMappingAuthentication;IIS-IISCertificateMappingAuthentication;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for authentication via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Basic-Auth
ServerManagerCmd-install Web-Windows-Auth
ServerManagerCmd-install Web-Digest-Auth
ServerManagerCmd-install Web-Client-Auth
ServerManagerCmd-install Web-Cert-Auth
IIS 7.0 and Above Authorization Features
To install IIS features for authorization from the Vista/Windows
Server 2008 setup user interface, select among following IIS features by
UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
URL Authorization |
IIS-URLAuthorization |
Request Filtering |
IIS-RequestFiltering |
IP Security |
IIS-IPSecurity |
Note: The Request Filtering feature is part of the
default install, and should only be excluded from your installations
after you consider all security issues related to this feature.
To install IIS features for authorization along with features for
Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-URLAuthorization;IIS-RequestFiltering;IIS-IPSecurity;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole; WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for authorization via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Url-Auth
ServerManagerCmd-install Web-Filtering
ServerManagerCmd-install Web-IP-Security
Management Features for Local and Remote Administration
The default static content workload includes the IIS Management
Console, which can be used to manage IIS on your local machine. The
Management Console can also be used to manage IIS servers remotely if
those servers are configured to accept connections from remote IIS
Management Consoles.
Management Client
Installing only the IIS Management Console will give you the ability
to manage IIS on other servers that have the Remote Management Service
installed.
To install the Management Client only without any IIS web Server or
FTP Server features from the Vista/Windows Server 2008 setup user
interface, select the following IIS features by UI name (in addition to
features for static content):
UI Name |
Update Name |
---|---|
IIS Management Console |
IIS- ManagementConsole |
To install IIS features for Management Console along with features
for Static Content Web Server via pkgmgr.exe, use the following command
line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Management Console via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Mgmt-Console
Remote Management Service
Installing the IIS Remote Management Service will allow an IIS server
to be managed remotely by IIS Management Consoles on other computers.
To install the IIS Management Service from the Vista/Windows Server
2008 setup user interface, select the following IIS features by UI name
(in addition to features for static content):
UI Name |
Update Name |
---|---|
Management Service |
IIS-ManagementService |
To install IIS Management Service along with features for Static
Content Web Server via pkgmgr.exe, use the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-ManagementService;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS Management Service via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Mgmt-Service
IIS 6.0 Metabase Compatibility
IIS provides a configuration store called ApplicationHost.config with
a set of management APIs. In order to maintain compatibility with
existing applications and scripts that use ABO or ADSI to configure IIS,
IIS provides a complete metabase compatibility layer that implements
the ABO and ADSI APIs and maps these APIs to the new
ApplicationHost.config data store. In addition to the Metabase
compatibility feature for ABO, you can also install IIS 6.0 Metabase
compatibility for WMI scripting and, the IIS 6.0 scripting tools. To
learn more about metabase compatibility, see the article Metabase Compatibility with IIS7 and Above
To install the Metabase Compatibility from the Vista/Windows Server
2008 setup user interface, select the following IIS features by UI name
(in addition to features for static content):
UI Name |
Update Name |
---|---|
IIS 6 Metabase Compatibility |
IIS-Metabase |
IIS 6 WMI Compatibility |
IIS-WMICompatibility |
IIS 6 Scripting Tools |
IIS-LegacyScripts |
To install IIS Metabase Compatibility along with features for Static
Content Web Server via pkgmgr.exe, use the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility; IIS-LegacyScripts;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS features for Metabase via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Metabase
ServerManagerCmd-install Web-WMI
ServerManagerCmd-install Web-Lgcy-Scripting
Managing IIS 6.0 and FTP Server
IIS 7.0 and above provides the IIS 6.0 MMC snap-in to allow you to
use your Vista/Windows Server 2008 machines to remotely administer
existing IIS 6.0 server on Windows Server 2003 as well as FTP servers on
Windows Server 2008. The IIS 6 Management Console cannot be used to
manage IIS 7.0 and above Servers.
To install the IIS 6.0 Management Console from the Vista/Windows
Server 2008 setup user interface, select the following IIS features by
UI name (in addition to features for static content):
UI Name |
Update Name |
---|---|
IIS 6 Management Console |
IIS-LegacySnapIn |
To install IIS 7.0 and above features for IIS 6.0 Management Console
along with features for Static Content Web Server via pkgmgr.exe, use
the following command line:
Start/w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering;IIS-HttpCompressionStatic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS6ManagementCompatibility;IIS-LegacySnapIn;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
To install IIS 7.0 and above features for IIS 6.0 management via ServerManagerCmd.exe, use the following command line:
ServerManagerCmd-install Web-Server
ServerManagerCmd-install Web-Lgcy-Mgmt-Console
Summary
In this article we saw how to install IIS 7.0 and above to support
specific workloads, and how these workloads can be combined and
modified. We also looked at adding IIS 7.0 and above features for
tracing, security, IIS 6.0 compatibility, local and remote management,
and IIS 6.0 management. After installing IIS 7.0 and above with the
Server Manager Tool you can then use the Web Server Role Page for quick
view of IIS 7.0 and above status, and use the IIS 7.0 and above
management Console to configure the IIS features you installed.
Install Typical IIS Workloads的更多相关文章
- Install the IIS 6.0 Management Compatibility Components in Windows 7 or in Windows Vista from Control Panel
https://technet.microsoft.com/en-us/library/bb397374(v=exchg.80).aspx Install the IIS 6.0 Management ...
- Understanding IIS Bindings, Websites, Virtual Directories, and lastly Application Pools
In a recent meeting, some folks on my team needed some guidance on load testing the Web application ...
- 10 steps to get Ruby on Rails running on Windows with IIS FastCGI- 摘自网络
Since the original tech preview release of FastCGI last year, we've been seeing a lot of requests fo ...
- Windows 8.1 IIS 8.5 远程管理 Windows 2008 R2 IIS 7.0
案例: Windows 8.1 x64 IIS 8.5 inetmgr_amd64_v1.1_en-US.msi Windows 2008 R2 x64 IIS 7.0 在Win8.1 通过IIS ...
- Installing IIS 8.5 on Windows Server 2012 R2
原文 Installing IIS 8.5 on Windows Server 2012 R2 Introduction This document describes how to install ...
- How do I create an IIS application and application pool using InnoSetup script
Create an IIS application. Create a new IIS application pool and set it's .NET version to 4. Set the ...
- [Asp.Net]Understanding Built-In User and Group Accounts in IIS
昨天把程序IIS6迁移到IIS7,出现异常 解决办法:文件夹选项权限增加IIS_IUSER 资料来源: http://www.iis.net/learn/get-started/planning-fo ...
- Understanding Built-In User and Group Accounts in IIS 7
Understanding Built-In User and Group Accounts in IIS 7 By lzb October 19, 2018 Introduction In earl ...
- IIS URL Rewrite – Installation and Use
IIS URL Rewrite – Installation and Use Posted by Nick LeFevre | Leave a reply IIS URL Rewrite Instal ...
随机推荐
- [ACM] POJ 3687 Labeling Balls (拓扑排序,反向生成端)
Labeling Balls Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10161 Accepted: 2810 D ...
- java基础---->Zip压缩的使用(转)
java中提供了对压缩格式的数据流的读写.它们封装到现成的IO 类中,以提供压缩功能.下面我们开始java中压缩文件的使用. 目录导航: 关于压缩的简要说明 GZIP压缩文件的使用 ZIP压缩文件的使 ...
- 构建自己的Java并发模型框架
Java的多线程特性为构建高性能的应用提供了极大的方便,可是也带来了不少的麻烦.线程间同步.数据一致性等烦琐的问题须要细心的考虑,一不小心就会出现一些微妙的,难以调试的错误. 另外.应用逻辑和线程逻辑 ...
- 初步C++类模板学习笔记
类模板 实现:在上课时间的定义给它的一个或多个参数,这些参数代表了不同的数据类型. -->抽象的类. 在调用类模板时, 指定參数, 由编 ...
- 在struts2中訪问servletAPI
在struts2中訪问servletAPI,通俗点也就是使用servlet中的两个对象request对象和response对象. 前几天看到一个CRM项目的源代码,里面使用request对象和resp ...
- 安装nodejs搭建ghost个人博客
记录一下今天在linux下折腾nodejs的过程,相互学习: (不知道为什么用源代码安装,调用npm的时候老是会出现找不到npmlog的 错误,后来换用下了个二进制 来搞,假设那个牛牛知道为什么.希望 ...
- DocFX
微软开源全新的文档生成工具DocFX 微软放弃Sandcastle有些年头了,微软最近开源了全新的文档生成工具DocFX,目前支持C#和VB,类似JSDoc或Sphinx,可以从源代码中提取注释生成文 ...
- java提高篇(二)-----理解java的三大特性之继承
在<Think in java>中有这样一句话:复用代码是Java众多引人注目的功能之一.但要想成为极具革命性的语言,仅仅能够复制代码并对加以改变是不够的,它还必须能够做更多的事情.在这句 ...
- thinkphp达到UploadFile.class.php图片上传功能
片上传在站点里是非经常常使用的功能.ThinkPHP里也有自带的图片上传类(UploadFile.class.php) 和图片模型类(Image.class.php).方便于我们去实现图片上传功能,以 ...
- android v7兼容包RecyclerView的使用(四)——点击事件的不同方式处理
前三篇文章 android v7兼容包RecyclerView的使用(三)--布局管理器的使用 android v7兼容包RecyclerView的使用(二) android v7兼容包Recycle ...