Using PowerShell , you can use the following
Get-Service | Where-Object {$_.displayName.StartsWith("NATION-")} | Select name
This will display a list of all services whose name begins with "NATION -".
You can also immediately stop or start services;
Get-Service | Where-Object {$_.displayName.StartsWith("NATION-")} | Stop-Service Get-Service | Where-Object {$_.displayName.StartsWith("NATION-")} | Start-Service
or simply
Get-Service | Where-Object {$_.displayName.StartsWith("NATION-")} | Restart-Service
wimh Dec 14 '12 at 16:27 2012-12-14 16:27
source share