Last active
January 9, 2018 13:22
-
-
Save jhorsman/2b8d4a53b5c2dbadf7dc098c914d4b35 to your computer and use it in GitHub Desktop.
Install / enable IIS on Windows 10; With the default IIS options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # based on the script in this post | |
| # https://weblog.west-wind.com/posts/2017/May/25/Automating-IIS-Feature-Installation-with-Powershell#AdditionalIISFeatures | |
| # | |
| # and the list of default IIS options from | |
| # https://www.howtogeek.com/112455/how-to-install-iis-8-on-windows-8/ | |
| # and http://nl.tinypic.com/r/29z6kvs/9 | |
| # | |
| # and a hint from https://gist.github.com/yetanotherchris/c51757d221eecb150867b7b113d227e8 | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServer | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-CommonHttpFeatures | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpErrors | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpRedirect | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-ApplicationDevelopment | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility45 | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HealthAndDiagnostics | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpLogging | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-LoggingLibraries | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-RequestMonitor | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpTracing | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-Security | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-RequestFiltering | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-Performance | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerManagementTools | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-IIS6ManagementCompatibility | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-Metabase | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-ManagementConsole | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-BasicAuthentication | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-WindowsAuthentication | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-StaticContent | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-DefaultDocument | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebSockets | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-ApplicationInit | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility45 | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-ASPNET -All | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-ASPNET45 -All | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-ISAPIExtensions | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-ISAPIFilter | |
| #Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpCompressionStatic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment