Created
July 28, 2015 18:30
-
-
Save Kevin-Bronsdijk/29575a3e440c51cc094e to your computer and use it in GitHub Desktop.
powershell-desired-state-configuration
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 MyName { | |
Node NameOfTheSystem { | |
#your instructions | |
} | |
} |
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
Service Spooler { | |
Name = "Spooler" | |
StartupType = "Disabled" | |
} |
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
File Reports { | |
DestinationPath = "c:\reports" | |
Type = "File" | |
} |
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
CoreDSC |
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
Start-DSCConfiguration –path YourPath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment