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