Scripts/DSC2/Mod6/Config/baseconfig.schema.psm1
configuration BaseConfig { param ( [string]$ServiceName ) # There is no Node Service StartAudio { Name = $serviceName State = 'Running' Ensure = 'Present' } WindowsFeature Backup { Name = 'Windows-server-backup' Ensure = 'Present' } } # Save as BaseConfig.schema.psm1 |