Powershell Get-Service (Stop) but NOT display status "waiting for <x> service to stop…"

Advertisements Basically, I don’t have an issue with the action being taken. My question is about the status output of the action "waiting for…" message. Is there a way to suppress that message? Example: PS C:\Users\a.real.person.maybe> Get-Service *fewserviceswithmatchingprefixes* | Where-Object {$_.Name -notmatch ‘somethinghere’ -and $_.Name -ne ‘alsosomethinghere’ -and $_.Name -ne ‘somethinghereprobably’} | Stop-Service WARNING: Waiting… Read More Powershell Get-Service (Stop) but NOT display status "waiting for <x> service to stop…"