Skip to content

Instantly share code, notes, and snippets.

@lnxchk
Created May 4, 2015 13:25
Show Gist options
  • Save lnxchk/4bcf4ab87979ad7e3ec8 to your computer and use it in GitHub Desktop.
Save lnxchk/4bcf4ab87979ad7e3ec8 to your computer and use it in GitHub Desktop.
powershell_script "Install IIS" do
code "CMD /C START /w PKGMGR.EXE /l:log.etw /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HttpRedirect;IIS-ApplicationDevelopment;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-ManagementScriptingTools;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility;IIS-LegacyScripts;WAS-WindowsActivationService;WAS-ProcessModel;IIS-FTPServer;IIS-FTPSvc;IIS-FTPExtensibility;IIS-WebDAV;IIS-ASPNET;IIS-NetFxExtensibility;WAS-NetFxEnvironment;WAS-ConfigurationAPI;IIS-ManagementService;MicrosoftWindowsPowerShell"
action :run
end
@camprr
Copy link

camprr commented May 4, 2015

Can be a little shorter:
powershell_script "Install IIS" do
code "CMD /C START /w pkgmgr /l:log.etw /iu:IIS-WebServerRole"
action :run
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment