Created
March 20, 2016 21:15
-
-
Save brianly/22d0cf93975b484bf218 to your computer and use it in GitHub Desktop.
PowerShell to install more IIS features than normally required. Pare this down for a production environment.
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
Install-WindowsFeature Web-Server | |
Install-WindowsFeature Web-Default-Doc | |
Install-WindowsFeature Web-Dir-Browsing | |
Install-WindowsFeature Web-Http-Errors | |
Install-WindowsFeature Web-Static-Content | |
Install-WindowsFeature Web-Http-Redirect | |
Install-WindowsFeature Web-Http-Logging | |
Install-WindowsFeature Web-Custom-Logging | |
Install-WindowsFeature Web-Log-Libraries | |
Install-WindowsFeature Web-Request-Monitor | |
Install-WindowsFeature Web-Http-Tracing | |
Install-WindowsFeature Web-Stat-Compression | |
Install-WindowsFeature Web-Filtering | |
Install-WindowsFeature Web-Basic-Auth | |
Install-WindowsFeature Web-Digest-Auth | |
Install-WindowsFeature Web-IP-Security | |
Install-WindowsFeature Web-Url-Auth | |
Install-WindowsFeature Web-Windows-Auth | |
Install-WindowsFeature Web-Net-Ext45 | |
Install-WindowsFeature Web-Asp-Net45 | |
Install-WindowsFeature Web-WebSockets | |
Install-WindowsFeature Web-Mgmt-Console | |
Install-WindowsFeature Web-Scripting-Tools | |
Install-WindowsFeature Web-Mgmt-Service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment