Skip to content

Instantly share code, notes, and snippets.

@bobalob
Last active February 14, 2017 21:24
Show Gist options
  • Save bobalob/1281d556cdd7da39a953a62fb77f4404 to your computer and use it in GitHub Desktop.
Save bobalob/1281d556cdd7da39a953a62fb77f4404 to your computer and use it in GitHub Desktop.
configuration DSCWebServer
{
Import-DSCResource -ModuleName 'xPSDesiredStateConfiguration'
node "localhost"
{
WindowsFeature IIS
{
Ensure = "Present"
Name = "Web-Server"
}
xUser TestUser
{
Ensure = "Present"
UserName = "TestUser"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment