November 25th, 2013

PowerTip: Use PowerShell to Find Key of WMI Class

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to find the key of a WMI class.

Hey, Scripting Guy! Question How can I use Windows PowerShell to discover the property that has the key qualifier for a WMI class?  

Hey, Scripting Guy! Answer Use Get-CimClass and iterate through the properties:

$class = Get-CimClass -ClassName Win32_Process

foreach ($property in $class.CimClassProperties) {

 $property | select -ExpandProperty Qualifiers |

 foreach {

   if ($_.Name -eq ‘key’){

     $property

   }

 }

 }

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.