Created
September 19, 2014 15:30
-
-
Save lawrencegripper/d1de5acdfb93d396e35b to your computer and use it in GitHub Desktop.
Chocolatey, PowerShell DSC and Azure IAAS - Automating dev box creation
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
configuration IISInstall | |
{ | |
node ("localhost") | |
{ | |
WindowsFeature IIS | |
{ | |
Ensure = "Present" | |
Name = "Web-Server" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment