How can I get the Windows service startup type using PowerShell and not using WMI?
I looked inside the Get-Service command, and it does not provide something to disp
You can use also:
(Get-Service 'winmgmt').StartType
It returns just the startup type, for example, disabled.