Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find WMI Classes Related to Services

$
0
0

Summary: Use Windows PowerShell to find WMI classes related to services that reveal start mode.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find a WMI class that will help me identify how services are starting?

Hey, Scripting Guy! Answer 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


Viewing all articles
Browse latest Browse all 3333

Trending Articles