Includes&Samples |
MSFT_NetNeighbor, ROOT\StandardCimv2, VB Net samplesClass | Methods (2) | Properties (36) | Qualifiers (6) | Instances (39) | Namespaces (2)Samples: VB Script | C# | VB.Net | Search on:Microsoft MSFT_NetNeighbor - VB.Net code samplesWMI query - sample windows WQL with VB.Net, AccessContext property of MSFT_NetNeighborGet a specified instance of MSFT_NetNeighbor by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this VB.Net sample code.
'Project -> Add reference -> System.Management 'Imports System.Management 'Get the namespace management scope Dim Scope As New ManagementScope("\\.\ROOT\StandardCimv2") 'Get a result of WML query Dim Query As New ObjectQuery("SELECT * FROM MSFT_NetNeighbor Where CreationClassName=""Name="pp: WMI query - list of class instancesList of all instances of MSFT_NetNeighbor class in C#.
//https://wutils.com/wmi/ //Project -> Add reference -> System.Management //using System.Management; //set the class name and namespace string NamespacePath = "\\\\.\\ROOT\\StandardCimv2"; string ClassName = "MSFT_NetNeighbor"; //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("AccessContext : {0}", oObject["AccessContext"]); } |