Summary: Use Windows PowerShell to find WMI classes related to services that reveal start mode.
How can I use Windows PowerShell to find a WMI class that will help me identify how services are starting?
Use the Get-CimClass cmdlet, use a wildcard character for the name, and specify StartMode
as the property, for example:
Get-CimClass *service* -PropertyName startmode