Affichage des services
Linux
systemctl status
systemctl status {name.service}
Windows
CMD
net status
net status | find 'service_name'
net status | find '*partial_service_name*'
Powershell
get-service | format-list
get-service | where {$_.Name -match name} | format-list
get-service | where {$_.Status -eq "Running"} | format-list
get-service | where Status -match "En cours" | format-list