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
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