Skip to content

Instantly share code, notes, and snippets.

@barretts
Created May 17, 2018 16:18

Revisions

  1. barretts created this gist May 17, 2018.
    47 changes: 47 additions & 0 deletions setup-iis.ps1
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,47 @@
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServer -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-CommonHttpFeatures -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-StaticContent -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-DefaultDocument -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-DirectoryBrowsing -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpErrors -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpRedirect -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ApplicationDevelopment -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ASP -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-CGI -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ISAPIExtensions -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ISAPIFilter -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ServerSideIncludes -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HealthAndDiagnostics -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpLogging -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-LoggingLibraries -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-RequestMonitor -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpTracing -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-CustomLogging -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ODBCLogging -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-Security -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-BasicAuthentication -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-WindowsAuthentication -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-DigestAuthentication -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ClientCertificateMappingAuthentication -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-IISCertificateMappingAuthentication -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-URLAuthorization -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-RequestFiltering -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-IPSecurity -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-Performance -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpCompressionStatic -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpCompressionDynamic -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerManagementTools -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ManagementScriptingTools -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-IIS6ManagementCompatibility -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-Metabase -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-WMICompatibility -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-LegacyScripts -All
    Enable-WindowsOptionalFeature -Online -FeatureName WAS-WindowsActivationService -All
    Enable-WindowsOptionalFeature -Online -FeatureName WAS-ProcessModel -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ASPNET -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ASPNET45 -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility -All
    Enable-WindowsOptionalFeature -Online -FeatureName WAS-NetFxEnvironment -All
    Enable-WindowsOptionalFeature -Online -FeatureName WAS-ConfigurationAPI -All
    Enable-WindowsOptionalFeature -Online -FeatureName IIS-ManagementService -All