CIM_DeviceSAPImplementation, ROOT\StandardCimv2, c# samples

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

CIM_DeviceSAPImplementation - c# code samples

WMI query - sample windows WQL with C#, Antecedent property of CIM_DeviceSAPImplementation

Get a specified instance of CIM_DeviceSAPImplementation 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\\StandardCimv2");
	
	//create object query
	ObjectQuery query = new ObjectQuery("SELECT * FROM CIM_DeviceSAPImplementation Where Antecedent=\"\\\\\\\\.\\\\ROOT\\\\StandardCimv2:MSFT_NetIPInterface.Name=\\\";A55<=55:\\\",SystemCreationClassName=\\\"\\\",SystemName=\\\"\\\",CreationClassName=\\\"\\\"\"Dependent=\"\\\\\\\\.\\\\ROOT\\\\StandardCimv2:CIM_NetworkPort.SystemCreationClassName=\\\"CIM_NetworkPort\\\",SystemName=\\\"W2012SDC\\\",CreationClassName=\\\"MSFT_NetAdapter\\\",DeviceID=\\\"{6560A11C-1386-404A-8308-154A7F594DF8}\\\"\"");
	
	//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("Antecedent : {0}", m["Antecedent"]);
	  
	}
	

WMI query - list of class instances

List of all instances of CIM_DeviceSAPImplementation 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\\StandardCimv2";
	string ClassName = "CIM_DeviceSAPImplementation";
	
	//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("Antecedent : {0}", oObject["Antecedent"]);
	}
	
WUtils.com
online utility - toplist