Includes&Samples |
RSOP_PolicySetting, ROOT\RSOP\Computer, c# samplesClass | Childs (16) | Methods | Properties (6) | Qualifiers (3) | Instances (40) | Namespaces (6)Samples: VB Script | C# | VB.Net | Search on:Microsoft c# Code samplesThe class RSOP_PolicySetting is abstract and serves only as a base for new classes. You cannot create instances of abstract class, see derived classes. WMI query - sample windows WQL with C#, creationTime property of RSOP_PolicySettingShort C# sample code to get the abstract class RSOP_PolicySetting and its properties.
//https://wutils.com/wmi/ //Project -> Add reference -> System.Management //using System.Management; //set the class name and namespace string NamespacePath = "\\\\.\\ROOT\\RSOP\\Computer"; string ClassName = "RSOP_PolicySetting"; //Create ManagementClass ManagementClass mClass = new ManagementClass(NamespacePath + ":" + ClassName); // List the properties in the RSOP_PolicySetting class PropertyDataCollection lproperties = mClass.Properties; // display the properties Console.WriteLine(string.Format("Property Names in {0}: ",ClassName)); foreach (PropertyData property in lproperties) { Console.WriteLine("name: {0}, Origin: {1}", property.Name, property.Origin ); } WMI query - list of class instancesList of all instances of RSOP_PolicySetting class in C#.
//https://wutils.com/wmi/ //Project -> Add reference -> System.Management //using System.Management; //set the class name and namespace string NamespacePath = "\\\\.\\ROOT\\RSOP\\Computer"; string ClassName = "RSOP_PolicySetting"; //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("creationTime : {0}", oObject["creationTime"]); } |