Reserved - property in ROOT\WMI\ms_409 namespace

Reserved in other namespaces

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

propertyClassOrigin
ReservedAcpiGenAddrAcpiGenAddr
ReservedAntiStarvationBoostAntiStarvationBoost
ReservedAutoBoostClearFloorAutoBoostClearFloor
ReservedCSwitchCSwitch
ReservedDiskIo_TypeGroup1DiskIo_TypeGroup1
ReservedDiskIo_V0_TypeGroup1DiskIo_V0_TypeGroup1
ReservedDiskIo_V2_TypeGroup1DiskIo_V2_TypeGroup1
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
ReservedMSAcpi_ThermalZoneTemperatureMSAcpi_ThermalZoneTemperature
ReservedMSDSM_DEFAULT_LOAD_BALANCE_POLICYMSDSM_DEFAULT_LOAD_BALANCE_POLICY
ReservedMSDSM_SUPPORTED_DEVICES_LISTMSDSM_SUPPORTED_DEVICES_LIST
ReservedMSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICYMSDSM_TARGETS_DEFAULT_LOAD_BALANCE_POLICY
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 MPIO_PATH_HEALTH_INFO

Short VBS code - get a single specified instance of MPIO_PATH_HEALTH_INFO 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\ms_409:" + _
 "MPIO_PATH_HEALTH_INFO.PropertyName=""SomeText""")
Wscript.Echo wmiObject.Reserved 'or other property name, see properties
See more VBS samples of MPIO_PATH_HEALTH_INFO class

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

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

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MPIO_PATH_HEALTH_INFO Where PropertyName=\"SomeText\"");

//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 MPIO_PATH_HEALTH_INFO

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

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MPIO_PATH_HEALTH_INFO Where PropertyName="SomeText"")

'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