Created
September 30, 2013 23:34
-
-
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.
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
| #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