Powershell workflow - Get-Service not filtering

414 Views Asked by At

I am trying to restart Windows services in parallel via Powershell workflow. When I use Get-Service -DisplayName "S*" outside of workflow I get expected results.

However, when I use the same in workflow, I get ALL services instead. It seems that -Displayname parameter is ignored in workflow.

How do I get only wanted services in PS workflow?

Using script:

workflow Restart-Services(){
    $services = Get-Service -DisplayName "S*"

    Foreach -Parallel ($svc in $services){
        $name = $svc.Name
        Restart-Service -Name $svc -Force
    }
}

Restart-Services
1

There are 1 best solutions below

3
On BEST ANSWER

I have no idea why -Name [wildcard] works and -DisplayName [wildcard] doesn't (inside a workflow), but you can use Where-Object to accomplish the filtering if you like:

workflow Restart-Services{
    $services = Get-Service |Where-Object -FilterScript {$_.DisplayName -like "S*"}

    Foreach -Parallel ($svc in $services){
        $name = $svc.Name
        Restart-Service -Name $name
    }
}