mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
36 lines
616 B
PowerShell
36 lines
616 B
PowerShell
param
|
|
(
|
|
[Parameter(Mandatory = $true)]
|
|
[String]
|
|
$ConfigurationName
|
|
)
|
|
|
|
Configuration $ConfigurationName
|
|
{
|
|
param
|
|
(
|
|
[Parameter(Mandatory = $true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[String]
|
|
$Path,
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
[AllowEmptyString()]
|
|
[String]
|
|
$Arguments,
|
|
|
|
[ValidateSet('Present', 'Absent')]
|
|
[String]
|
|
$Ensure = 'Present'
|
|
)
|
|
|
|
Import-DscResource -ModuleName 'PSDscResources'
|
|
|
|
WindowsProcess Process1
|
|
{
|
|
Path = $Path
|
|
Arguments = $Arguments
|
|
Ensure = $Ensure
|
|
}
|
|
}
|