How to stop the service with the display name in PowerShell?n



Similar to -Name parameter, when you add -DisplayName parameter followed by service display name, it will stop service with DisplayName.

Stop-Service -DisplayName 'Print Spooler' -Verbose

OR

Get-Service -DisplayName "Print Spooler" | Stop-Service -Verbose

Advertisements