Skip to content

Instantly share code, notes, and snippets.

@mwrock
Created September 30, 2013 23:34
Show Gist options
  • Save mwrock/6771863 to your computer and use it in GitHub Desktop.
Save mwrock/6771863 to your computer and use it in GitHub Desktop.
This will setup the apps and features you mentioned. You can use "clist -source windowsfeatures" to see all available features since your IIS and MSMQ settings may vary.
#setup IIS. you may want other IIS features but this is a basic example
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
cinst IIS-ManagementScriptingTools -source windowsfeatures
cinst IIS-WindowsAuthentication -source windowsfeatures
#I have never setup MSMQ. this turns on the server feature
cinst MSMQ-Server -source windowsfeatures
cinstm DotNet4.5
cinstm mssqlserver2012express
#runs patches
Install-WindowsUpdate -AcceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment