Get startup type of Windows service using PowerShell
WMI is the way to do this.
Get-WmiObject -Query "Select StartMode From Win32_Service Where Name='winmgmt'"
Or
Get-WmiObject -Class Win32_Service -Property StartMode -Filter "Name='Winmgmt'"
With PowerShell version 4:
You can run a command as given below:
Get-Service | select -property name,starttype