Skip to content

Instantly share code, notes, and snippets.

@bobalob
Created December 5, 2016 19:13
Show Gist options
  • Save bobalob/a8e6731d916f71066f2590e46b161ad0 to your computer and use it in GitHub Desktop.
Save bobalob/a8e6731d916f71066f2590e46b161ad0 to your computer and use it in GitHub Desktop.
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