Export Windows Services to a CSV
Another nice trick – exporting a list of Windows Services to a CSV. Using Powershell:
1 |
Get-Service | Export-Csv -path "C:\services.csv" |
Or get fancy and pull based on status:
1 |
Get-Service | where {$_.Status -eq "Running"} | Export-Csv -path "C:\services.csv" |