PowerShell · Administration

Windows-Dienste nach CSV exportieren

Exportiert Status und Starttyp aller Windows-Dienste in eine CSV-Datei.

PowerShell
Get-CimInstance Win32_Service |
  Select-Object Name,DisplayName,State,StartMode |
  Export-Csv -Path ".\services.csv" -NoTypeInformation -Encoding UTF8
PowerShellDiensteCSV
WA