examples/demo6/Configurations/PLATFORM/DscResources/Config1/Config1.schema.psm1
Configuration Config1 { Param( $Config1Param1 = 'blahblah' #$(Lookup $Node 'Path\to\data') ) File 'Config1' { Ensure = 'present' DestinationPath = 'C:\blah.txt' Contents = $Config1Param1 } } |