RSOP_ApplicationManagementCategory, ROOT\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002, c# samples

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

RSOP_ApplicationManagementCategory - c# code samples

WMI query - sample windows WQL with C#, CategoryId property of RSOP_ApplicationManagementCategory

Get a specified instance of RSOP_ApplicationManagementCategory 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\\RSOP\\User\\S_1_5_21_4251975986_251742880_3643873951_1002");
	
	//create object query
	ObjectQuery query = new ObjectQuery("SELECT * FROM RSOP_ApplicationManagementCategory");
	
	//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("CategoryId : {0}", m["CategoryId"]);
	  
	}
	

WMI query - list of class instances

List of all instances of RSOP_ApplicationManagementCategory 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\\RSOP\\User\\S_1_5_21_4251975986_251742880_3643873951_1002";
	string ClassName = "RSOP_ApplicationManagementCategory";
	
	//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("CategoryId : {0}", oObject["CategoryId"]);
	}
	
comments powered by Disqus
WUtils.com