Added support for comma seperated feature names in the name parameter of the win_feature module
This commit is contained in:
parent
8bd367eac7
commit
f9c294f1ad
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ $result = New-Object PSObject -Property @{
|
|||
}
|
||||
|
||||
If ($params.name) {
|
||||
$name = $params.name
|
||||
$name = $params.name -split ',' | % { $_.Trim() }
|
||||
}
|
||||
Else {
|
||||
Fail-Json $result "mising required argument: name"
|
||||
|
|
Loading…
Reference in a new issue