mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
2a7b5eef2b
This reverts commit 590a77441f.
16 lines
329 B
PowerShell
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'
|
|
}
|
|
}
|