Scripts/DSC1/Mod2/2.SimpleConfig.ps1
configuration ConfigName { Node $ComputerName { WindowsFeature IIS{ Name = 'web-server' Ensure = 'Present' } } } $computername = 'S1','S2' ConfigName -OutputPath c:\DSC\Config |
configuration ConfigName { Node $ComputerName { WindowsFeature IIS{ Name = 'web-server' Ensure = 'Present' } } } $computername = 'S1','S2' ConfigName -OutputPath c:\DSC\Config |