EnabledDefault - property in ROOT\StandardCimv2\MS_409 namespace

EnabledDefault in other namespaces

List of classes with EnabledDefault local property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
EnabledDefaultCIM_EnabledLogicalElementCIM_EnabledLogicalElement

List of classes with EnabledDefault derived property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
EnabledDefaultCIM_IKESAEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_IPProtocolEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_IPsecSAEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_LANEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_LogicalDeviceCIM_EnabledLogicalElement
EnabledDefaultCIM_LogicalPortCIM_EnabledLogicalElement
EnabledDefaultCIM_NetworkPipeCIM_EnabledLogicalElement
EnabledDefaultCIM_NetworkPortCIM_EnabledLogicalElement
EnabledDefaultCIM_ProtocolEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_RemoteServiceAccessPointCIM_EnabledLogicalElement
EnabledDefaultCIM_SecurityAssociationEndpointCIM_EnabledLogicalElement
EnabledDefaultCIM_ServiceAccessPointCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetAdapterCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetBaseIPProtocolCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetIPAddressCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetIPInterfaceCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetIPv4ProtocolCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetIPv6ProtocolCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetMainModeSACIM_EnabledLogicalElement
EnabledDefaultMSFT_NetNeighborCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetQuickModeSACIM_EnabledLogicalElement
EnabledDefaultMSFT_NetTCPConnectionCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetTransportConnectionCIM_EnabledLogicalElement
EnabledDefaultMSFT_NetUDPEndpointCIM_EnabledLogicalElement

Code samples for EnabledDefault property

Get instance of WMI class using GetObject, EnabledDefault property of MSFT_NetAdapter

Short VBS code - get a single specified instance of MSFT_NetAdapter class or get a default unnamed instance (singleton) of the class, using one single command GetObject with exact path of the wmi object.

'https://wutils.com/wmi/
Dim wmiObject
Set wmiObject = GetObject( _
 "WINMGMTS:\\.\ROOT\StandardCimv2\MS_409:" + _
 "MSFT_NetAdapter.CreationClassName=""Value"",DeviceID=""Value"",SystemCreationClassName=""Value"",SystemName=""Value""")
Wscript.Echo wmiObject.EnabledDefault 'or other property name, see properties
See more VBS samples of MSFT_NetAdapter class

WMI query - sample windows WQL with C#, EnabledDefault property of MSFT_NetAdapter

Get a specified instance of MSFT_NetAdapter by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this c# sample code.
See in another language: VBScript, VB.Net.
//https://wutils.com/wmi/

//Project -> Add reference -> System.Management
//using System.Management;

//create a management scope object
ManagementScope scope = new ManagementScope("\\\\.\\ROOT\\StandardCimv2\\MS_409");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MSFT_NetAdapter");

//create object searcher
ManagementObjectSearcher searcher =
                        new ManagementObjectSearcher(scope, query);

//get a collection of WMI objects
ManagementObjectCollection queryCollection = searcher.Get();

//enumerate the collection.
foreach (ManagementObject m in queryCollection) 
{
  // access properties of the WMI object
  Console.WriteLine("EnabledDefault : {0}", m["EnabledDefault"]);
  
}

WMI query - sample windows WQL with VB.Net, EnabledDefault property of MSFT_NetAdapter

Get a specified instance of MSFT_NetAdapter 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.
See in another language: VBScript, C#
'Project -> Add reference -> System.Management
'Imports System.Management

'Get the namespace management scope
Dim Scope As New ManagementScope("\\.\ROOT\StandardCimv2\MS_409")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MSFT_NetAdapter")

'Create object searcher
Dim Searcher As New ManagementObjectSearcher(Scope, Query)

'Get a collection of WMI objects
Dim queryCollection As ManagementObjectCollection = Searcher.Get

'Enumerate wmi object 
For Each mObject As ManagementObject In queryCollection
  'write out some property value
  Console.WriteLine("EnabledDefault : {0}", mObject("EnabledDefault"))
Next
comments powered by Disqus
WUtils.com