Last active
February 14, 2017 21:24
-
-
Save bobalob/1281d556cdd7da39a953a62fb77f4404 to your computer and use it in GitHub Desktop.
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 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