Skip to content

Instantly share code, notes, and snippets.

@bobalob
Created December 2, 2016 17:38
Show Gist options
  • Save bobalob/9a10e4125249eb75b8c753e7e01a5aa3 to your computer and use it in GitHub Desktop.
Save bobalob/9a10e4125249eb75b8c753e7e01a5aa3 to your computer and use it in GitHub Desktop.
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