Includes&Samples |
CIM_System, ROOT\Hardware, VB Net samplesClass | Childs (2) | Methods (1) | Properties (19) | Qualifiers (5) | Instances (1) | Namespaces (15)Samples: VB Script | C# | VB.Net | Search on:Microsoft VB.Net Code samplesThe class CIM_System 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 VB.Net, Caption property of CIM_SystemShort VB.Net sample code to get the abstract class CIM_System and its properties.
'http://wutils.com/wmi/ 'Project -> Add reference -> System.Management 'Imports System.Management 'set the class name and namespace Dim NamespacePath As String = "\\.\ROOT\Hardware" Dim ClassName As String = "CIM_System" 'Create ManagementClass Dim mClass As New ManagementClass(NamespacePath + ":" + ClassName) 'List the properties in the CIM_System class Dim lproperties As PropertyDataCollection = mClass.Properties 'display the properties Console.WriteLine(String.Format("Property Names in {0}: ", ClassName)) For Each oproperty As PropertyData In lproperties Console.WriteLine("Name: {0}, Origin: {1}", oproperty.Name, oproperty.Origin) Next WMI query - sample windows WQL with VB.Net, Caption property of CIM_SystemList of all instances of CIM_System class in VB.Net.
'http://wutils.com/wmi/ 'Project -> Add reference -> System.Management 'Imports System.Management 'set the class name and namespace Dim NamespacePath As String = "\\.\ROOT\Hardware" Dim ClassName As String = "CIM_System" 'Create ManagementClass Dim oClass As New ManagementClass(NamespacePath + ":" + ClassName) 'Get all instances of the class and enumerate them For Each oObject As ManagementObject In oClass.GetInstances() 'access a property of the Management object Console.WriteLine("Caption : {0}", oObject("Caption")) Next |