EnumerationOptions Class
.NET Framework 3.0
Provides a base class for query and enumeration-related options objects.
Namespace: System.Management
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example initializes an EnumerationOptions variable with an EnumerationOptions constructor and then gets all the instances of a WMI class and its subclasses.
Imports System Imports System.Management Public Class RemoteConnect Public Overloads Shared Function Main( _ ByVal args() As String) As Integer Dim opt As New EnumerationOptions ' Will enumerate instances of the given class ' and any subclasses. opt.EnumerateDeep = True Dim mngmtClass As New ManagementClass("CIM_Service") Dim o As ManagementObject For Each o In mngmtClass.GetInstances(opt) Console.WriteLine(o("Name")) Next o Return 0 End Function End Class
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: