Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Configuration TestPush
  2. {
  3. Import-DscResource -ModuleName 'PSDesiredStateConfiguration'
  4. Node dscclient.example.com
  5. {
  6. File tempFolder
  7. {
  8. Ensure = 'Present'
  9. DestinationPath = 'C:\Temp'
  10. Type = 'Directory'
  11. }
  12. }
  13. }
  14.  
  15. TestConfig -OutPutPath "C:\DSC\BasicPush"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement