PowerTip: Find Updatable WMI Classes

Doctor Scripto

Summary: Learn how to use Windows PowerShell 3.0 to easily find WMI classes you can update.

Hey, Scripting Guy! Question How can I find WMI classes that support updating?

Hey, Scripting Guy! AnswerUse the Get-Cimclass cmdlet and a wild card for the WMI class name. Then, look for the class qualifier of supportsupdate, as shown here.

Get-CimClass -ClassName * -QualifierName supportsupdate

 

0 comments

Discussion is closed.

Feedback usabilla icon