Added support for comma seperated feature names in the name parameter of the win_feature module

This commit is contained in:
Ian Clegg 2015-03-20 10:34:36 +00:00 committed by Matt Clay
parent 8bd367eac7
commit f9c294f1ad

View file

@ -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"