I am trying to query the names all of the WMI classes within the root\CIMV2 namespace. Is there a way to use a powershell command to retrieve this information in C# ?
|
Along the lines of Keith's approach
|
|||
|
|
|
I'm not sure why you mentioned PowerShell; you can do this in pure C# and WMI (the To get a list of all WMI classes, use the
|
|||
|
|
|
Just to note that there is a tool available that allows you to create, run, and save WMI scripts written in PowerShell, the PowerShell Scriptomatic tool, available for download from the Microsoft TechNet site. Using this tool, you could explore all of the WMI classes within the root\CIMV2 or any other WMI namespace.
|
|||
|
|
|
You'd probably want to just use the System.Management namespace like Helen answered, but you can also host powershell within your application. See http://www.codeproject.com/KB/cs/HowToRunPowerShell.aspx |
|||
|
|
|
Personally I would go with Helen's approach and eliminate taking a dependency on PowerShell. That said, here's how you would code this in C# to use PowerShell to retrieve the desired info:
|
|||
|
|
