There are some windows services hosted whose display name starts with a common name (here NATION). For example:
Using PowerShell, you can use the following
Get-Service | Where-Object {$_.displayName.StartsWith("NATION-")} | Select name
This will show a list off all services which displayname starts with "NATION-".
You can also directly stop or start the 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
Save it as a .ps1 file and then execute
powershell -file "path\to your\start stop nation service command file.ps1"
sc queryex type= service state= all | find /i "NATION"
/i
for case insensitive searchtype=
is deliberate and required