Msvm_ElementConformsToProfile, ROOT\interop, c# samples

Class | Methods | Properties (2) | Qualifiers (2) | Instances (1) | Namespaces (2)
Samples: VB Script | C# | VB.Net | Search on:Microsoft

Msvm_ElementConformsToProfile - c# code samples

WMI query - sample windows WQL with C#, ConformantStandard property of Msvm_ElementConformsToProfile

Get a specified instance of Msvm_ElementConformsToProfile by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this c# sample code.
See in another language: VBScript, VB.Net.
	//https://wutils.com/wmi/
	
	//Project -> Add reference -> System.Management
	//using System.Management;
	
	//create a management scope object
	ManagementScope scope = new ManagementScope("\\\\.\\ROOT\\interop");
	
	//create object query
	ObjectQuery query = new ObjectQuery("SELECT * FROM Msvm_ElementConformsToProfile Where ConformantStandard=\"\\\\\\\\W2012SDC\\\\root\\\\interop:Msvm_RegisteredProfile.InstanceID=\\\"DMTF|System Virtualization|1.0.0\\\"\"ManagedElement=\"\\\\\\\\W2012SDC\\\\root\\\\virtualization\\\\v2:Msvm_ComputerSystem.CreationClassName=\\\"Msvm_ComputerSystem\\\",Name=\\\"W2012SDC\\\"\"");
	
	//create object searcher
	ManagementObjectSearcher searcher =
	                        new ManagementObjectSearcher(scope, query);
	
	//get a collection of WMI objects
	ManagementObjectCollection queryCollection = searcher.Get();
	
	//enumerate the collection.
	foreach (ManagementObject m in queryCollection) 
	{
	  // access properties of the WMI object
	  Console.WriteLine("ConformantStandard : {0}", m["ConformantStandard"]);
	  
	}
	

WMI query - list of class instances

List of all instances of Msvm_ElementConformsToProfile class in C#.
See in another language: VBScript, VB.Net.
	//https://wutils.com/wmi/
	
	//Project -> Add reference -> System.Management
	//using System.Management;
	
	//set the class name and namespace
	string NamespacePath = "\\\\.\\ROOT\\interop";
	string ClassName = "Msvm_ElementConformsToProfile";
	
	//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("ConformantStandard : {0}", oObject["ConformantStandard"]);
	}
	
comments powered by Disqus
WUtils.com