Trying to mimic the command Get-CimInstance CIM_ManagedSystemElement
in C#
string NamespacePath = "\\\\.\\Root\\CIMv2";
string ClassName = "CIM_ManagedSystemElement";
//Create ManagementClass
ManagementClass oClass = new ManagementClass(NamespacePath + ":" + ClassName);
//Get all instances of the class and enumerate them
foreach (ManagementObject oObject in oClass.GetInstances())
{
//access a property of the Management object
Console.WriteLine("Caption : {0}", oObject["Caption"]);
}
Sadly, that didnt work as expected, would like to get some help
Thanks
You do this like this (you have to add
System.Management
namespace)Because CIM_ManagedSystemElement is at the default WMI namespace( which is Root\CIMV2) you don't have to specify it at
ManagementObjectSearcher
.Also, be sure that you have the minimum supported client- Windows Vista
Furthermore i suggest you use an ORM to remove boilerplate code like ORMi or Kexla