Skip to content

Instantly share code, notes, and snippets.

@lawrencegripper
Created September 19, 2014 15:30
Show Gist options
  • Save lawrencegripper/d1de5acdfb93d396e35b to your computer and use it in GitHub Desktop.
Save lawrencegripper/d1de5acdfb93d396e35b to your computer and use it in GitHub Desktop.
Chocolatey, PowerShell DSC and Azure IAAS - Automating dev box creation
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