Examples/Sample_ServiceSet.ps1
<#
.SYNOPSIS Ensures that the DHCP Client and Windows Firewall services are running. #> Configuration ServiceSetStartExample { Import-DscResource -ModuleName 'GuestConfiguration' ServiceSet ServiceSet1 { Name = @( 'Dhcp', 'MpsSvc' ) Ensure = 'Present' State = 'Running' } } |