RequestedState - property in ROOT\CIMV2\storage\iscsitarget namespace

RequestedState in other namespaces

List of classes with RequestedState local property in ROOT\CIMV2\storage\iscsitarget namespace

propertyClassOrigin
RequestedStateCIM_EnabledLogicalElementCIM_EnabledLogicalElement

List of classes with RequestedState derived property in ROOT\CIMV2\storage\iscsitarget namespace

propertyClassOrigin
RequestedStateCIM_AuthenticationServiceCIM_EnabledLogicalElement
RequestedStateCIM_ComputerSystemCIM_EnabledLogicalElement
RequestedStateCIM_ControllerConfigurationServiceCIM_EnabledLogicalElement
RequestedStateCIM_EthernetPortCIM_EnabledLogicalElement
RequestedStateCIM_IdentityManagementServiceCIM_EnabledLogicalElement
RequestedStateCIM_IPProtocolEndpointCIM_EnabledLogicalElement
RequestedStateCIM_iSCSIConfigurationServiceCIM_EnabledLogicalElement
RequestedStateCIM_iSCSIConnectionCIM_EnabledLogicalElement
RequestedStateCIM_iSCSIProtocolEndpointCIM_EnabledLogicalElement
RequestedStateCIM_iSCSISessionCIM_EnabledLogicalElement
RequestedStateCIM_LogicalDeviceCIM_EnabledLogicalElement
RequestedStateCIM_LogicalPortCIM_EnabledLogicalElement
RequestedStateCIM_NetworkPipeCIM_EnabledLogicalElement
RequestedStateCIM_NetworkPortCIM_EnabledLogicalElement
RequestedStateCIM_ObjectManagerCIM_EnabledLogicalElement
RequestedStateCIM_ObjectManagerCommunicationMechanismCIM_EnabledLogicalElement
RequestedStateCIM_ProtocolControllerCIM_EnabledLogicalElement
RequestedStateCIM_ProtocolEndpointCIM_EnabledLogicalElement
RequestedStateCIM_ReplicationServiceCIM_EnabledLogicalElement
RequestedStateCIM_SCSIProtocolControllerCIM_EnabledLogicalElement
RequestedStateCIM_SCSIProtocolEndpointCIM_EnabledLogicalElement
RequestedStateCIM_SecurityServiceCIM_EnabledLogicalElement
RequestedStateCIM_ServiceCIM_EnabledLogicalElement
RequestedStateCIM_ServiceAccessPointCIM_EnabledLogicalElement
RequestedStateCIM_StorageConfigurationServiceCIM_EnabledLogicalElement
RequestedStateCIM_StorageExtentCIM_EnabledLogicalElement
RequestedStateCIM_StorageHardwareIDManagementServiceCIM_EnabledLogicalElement
RequestedStateCIM_StorageVolumeCIM_EnabledLogicalElement
RequestedStateCIM_SystemCIM_EnabledLogicalElement
RequestedStateCIM_TCPProtocolEndpointCIM_EnabledLogicalElement
RequestedStateCIM_WBEMServiceCIM_EnabledLogicalElement
RequestedStateMSFTSM_ComputerSystemCIM_EnabledLogicalElement
RequestedStateMSFTSM_ObjectManagerCIM_EnabledLogicalElement
RequestedStateMSFTSM_SystemCIM_EnabledLogicalElement
RequestedStateMSFTSM_WSManCommunicationMechanismCIM_EnabledLogicalElement
RequestedStateMSFTSMNET_EthernetPortCIM_EnabledLogicalElement
RequestedStateMSFTSMNET_IPProtocolEndpointCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_ControllerConfigurationServiceCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_iSCSIConfigurationServiceCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_iSCSIConnectionCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_iSCSIProtocolEndpointCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_iSCSISessionCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_ReplicationServiceCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_SCSIProtocolControllerCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_StorageConfigurationServiceCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_StorageHardwareIDManagementServiceCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_StorageVolumeCIM_EnabledLogicalElement
RequestedStateMSISCSITARGET_TCPProtocolEndpointCIM_EnabledLogicalElement

Code samples for RequestedState property

Get instance of WMI class using GetObject, RequestedState property of MSFTSMNET_EthernetPort

Short VBS code - get a single specified instance of MSFTSMNET_EthernetPort 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\CIMV2\storage\iscsitarget:" + _
 "MSFTSMNET_EthernetPort.CreationClassName=""MSFTSMNET_EthernetPort"",DeviceID=""10"",SystemCreationClassName=""MSFTSM_ComputerSystem"",SystemName=""MS iSCSITarget: ..rootdomain.com""")
Wscript.Echo wmiObject.RequestedState 'or other property name, see properties
See more VBS samples of MSFTSMNET_EthernetPort class

WMI query - sample windows WQL with C#, RequestedState property of MSFTSMNET_EthernetPort

Get a specified instance of MSFTSMNET_EthernetPort 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\\CIMV2\\storage\\iscsitarget");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MSFTSMNET_EthernetPort Where CreationClassName=\"MSFTSMNET_EthernetPort\"DeviceID=\"10\"SystemCreationClassName=\"MSFTSM_ComputerSystem\"SystemName=\"MS iSCSITarget: W2012SDC.rootdomain.com\"");

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

WMI query - sample windows WQL with VB.Net, RequestedState property of MSFTSMNET_EthernetPort

Get a specified instance of MSFTSMNET_EthernetPort 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\CIMV2\storage\iscsitarget")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MSFTSMNET_EthernetPort Where CreationClassName="MSFTSMNET_EthernetPort"DeviceID="10"SystemCreationClassName="MSFTSM_ComputerSystem"SystemName="MS iSCSITarget: W2012SDC.rootdomain.com"")

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