Files
PowerShell-PSDscResources/Examples/Sample_ServiceSet_StartServices.ps1
T
Simon Heather 2a7b5eef2b Revert "Fix example dir BOM files"
This reverts commit 590a77441f.
2019-04-28 18:49:16 +01:00

16 lines
329 B
PowerShell

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