I am Dale Hayter, a Microsoft and VMware certified Technical Consultant.

My blog has been built up over the years from my experience of working on an IT helpdesk and also from being out on-site.

Export List of Windows Services which are set to auto in PowerShell

To Export a List of Windows Services which are set to auto in PowerShell run the following command :-

get-WmiObject Win32_service | Where-Object {$_.Startmode -contains 'Auto'} | Export-Csv c:\services.csv