mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
16 lines
326 B
PowerShell
16 lines
326 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'
|
|
}
|
|
}
|