Reserved - property in ROOT\WMI namespace

Reserved in other namespaces

List of classes with Reserved local property in ROOT\WMI namespace

propertyClassOrigin
ReservedAcpiGenAddrAcpiGenAddr
ReservedAntiStarvationBoostAntiStarvationBoost
ReservedAutoBoostClearFloorAutoBoostClearFloor
ReservedCSwitchCSwitch
ReservedDiskIo_TypeGroup1DiskIo_TypeGroup1
ReservedDiskIo_V0_TypeGroup1DiskIo_V0_TypeGroup1
ReservedDiskIo_V2_TypeGroup1DiskIo_V2_TypeGroup1
ReservedHBAFC3MgmtInfoHBAFC3MgmtInfo
ReservedISCSI_ConnectionStaticInfoISCSI_ConnectionStaticInfo
ReservedISCSI_LUNListISCSI_LUNList
ReservedISCSI_TargetMappingISCSI_TargetMapping
ReservedISCSI_TargetPortalISCSI_TargetPortal
ReservedISRISR
ReservedISR_MSIISR_MSI
ReservedKernelIdleStateKernelIdleState
ReservedKernelPerfStatesKernelPerfStates
ReservedMPIO_DISK_HEALTH_INFOMPIO_DISK_HEALTH_INFO
ReservedMPIO_PATH_HEALTH_INFOMPIO_PATH_HEALTH_INFO
ReservedMS_SMHBA_PORTATTRIBUTESMS_SMHBA_PORTATTRIBUTES
ReservedMSAcpi_ThermalZoneTemperatureMSAcpi_ThermalZoneTemperature
ReservedMSDSM_DEFAULT_LOAD_BALANCE_POLICYMSDSM_DEFAULT_LOAD_BALANCE_POLICY
ReservedMSDSM_SUPPORTED_DEVICES_LISTMSDSM_SUPPORTED_DEVICES_LIST
ReservedMSDSM_TARGET_DEFAULT_POLICY_INFOMSDSM_TARGET_DEFAULT_POLICY_INFO
ReservedMSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICYMSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY
ReservedMSiSCSI_QueryLBPolicyMSiSCSI_QueryLBPolicy
ReservedMSiSCSI_RADIUSConfigMSiSCSI_RADIUSConfig
ReservedMSNdis_80211_WLanBssIdMSNdis_80211_WLanBssId
ReservedMSNdis_GroupAffinityMSNdis_GroupAffinity
ReservedMSNdis_WmiIPSecOffloadV1_IPv4ESPMSNdis_WmiIPSecOffloadV1_IPv4ESP
ReservedMSSmBios_SMBiosEventlogMSSmBios_SMBiosEventlog
ReservedMSStorageDriver_ATAPISmartDataMSStorageDriver_ATAPISmartData
ReservedMSStorageDriver_ClassErrorLogEntryMSStorageDriver_ClassErrorLogEntry
ReservedMSStorageDriver_ScsiRequestBlockMSStorageDriver_ScsiRequestBlock
ReservedMSStorageDriver_SenseDataMSStorageDriver_SenseData
ReservedObTypeEventObTypeEvent
ReservedPageFault_HeapRangeRundownPageFault_HeapRangeRundown
ReservedPmcCounterProfilePmcCounterProfile
ReservedProcess_V2_TypeGroup2Process_V2_TypeGroup2
ReservedReadyThreadReadyThread
ReservedSampledProfileSampledProfile
ReservedSpinLockSpinLock
ReservedSystemConfig_V3_IRQSystemConfig_V3_IRQ
ReservedThreadAffinityThreadAffinity
ReservedThreadPriorityThreadPriority

Code samples for Reserved property

Get instance of WMI class using GetObject, Reserved property of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY

Short VBS code - get a single specified instance of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY 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\WMI:" + _
 "MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY.InstanceName=""ROOT\\MPIO\\0000_0""")
Wscript.Echo wmiObject.Reserved 'or other property name, see properties
See more VBS samples of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY class

WMI query - sample windows WQL with C#, Reserved property of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY

Get a specified instance of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY 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\\WMI");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY Where InstanceName=\"ROOT\\\\MPIO\\\\0000_0\"");

//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("Reserved : {0}", m["Reserved"]);
  
}

WMI query - sample windows WQL with VB.Net, Reserved property of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY

Get a specified instance of MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY 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\WMI")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY Where InstanceName="ROOT\\MPIO\\0000_0"")

'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("Reserved : {0}", mObject("Reserved"))
Next
comments powered by Disqus
WUtils.com