Windows Services -Liste
// Commands for powershell
//lists all services and their current state
Get-Service
//List stopped services
Get-Service | Where-Object {$_.Status -eq "Stopped"}
Modern Marten