Going through the learn powershell in 30 days. One test question was to display services with automattic startup and are stopped:
Get-Service | Select-Object -Property Name,Status,StartType | where-object {$_.Status -eq “Stopped” -and $_.StartType -eq “Automatic”}