Created
December 2, 2016 17:38
-
-
Save bobalob/9a10e4125249eb75b8c753e7e01a5aa3 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 TestPush | |
{ | |
Import-DscResource -ModuleName 'PSDesiredStateConfiguration' | |
Node dscclient.example.com | |
{ | |
File tempFolder | |
{ | |
Ensure = 'Present' | |
DestinationPath = 'C:\Temp' | |
Type = 'Directory' | |
} | |
} | |
} | |
TestConfig -OutPutPath "C:\DSC\BasicPush" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment