This documentation is archived and is not being maintained.
EnumerationOptions Class
Visual Studio 2008
Provides a base class for query and enumeration-related options objects.
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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: