mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
36 lines
638 B
PowerShell
36 lines
638 B
PowerShell
param
|
|
(
|
|
[Parameter(Mandatory)]
|
|
[System.String]
|
|
$ConfigurationName
|
|
)
|
|
|
|
Configuration $ConfigurationName
|
|
{
|
|
param
|
|
(
|
|
[Parameter(Mandatory = $true)]
|
|
[System.String]
|
|
$Name,
|
|
|
|
[ValidateSet('Present', 'Absent')]
|
|
[System.String]
|
|
$Ensure = 'Present',
|
|
|
|
[System.Boolean]
|
|
$IncludeAllSubFeature = $false
|
|
)
|
|
|
|
Import-DscResource -ModuleName 'PSDscResources'
|
|
|
|
Node Localhost
|
|
{
|
|
WindowsFeature WindowsFeatureTest
|
|
{
|
|
Name = $Name
|
|
Ensure = $Ensure
|
|
IncludeAllSubFeature = $IncludeAllSubFeature
|
|
}
|
|
}
|
|
}
|