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

SystemName in other namespaces

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

propertyClassOrigin
SystemNameCIM_LogicalDeviceCIM_LogicalDevice
SystemNameCIM_NamespaceCIM_Namespace
SystemNameCIM_ServiceCIM_Service
SystemNameCIM_ServiceAccessPointCIM_ServiceAccessPoint
SystemNameMSISCSITARGET_iSCSIConnectionMSISCSITARGET_iSCSIConnection
SystemNameMSISCSITARGET_iSCSISessionMSISCSITARGET_iSCSISession
SystemNameMSISCSITARGET_iSCSISessionSettingsMSISCSITARGET_iSCSISessionSettings
SystemNameMSISCSITARGET_StoragePoolMSISCSITARGET_StoragePool

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

propertyClassOrigin
SystemNameCIM_AuthenticationServiceCIM_Service
SystemNameCIM_ControllerConfigurationServiceCIM_Service
SystemNameCIM_EthernetPortCIM_LogicalDevice
SystemNameCIM_IdentityManagementServiceCIM_Service
SystemNameCIM_IPProtocolEndpointCIM_ServiceAccessPoint
SystemNameCIM_iSCSIConfigurationServiceCIM_Service
SystemNameCIM_iSCSIProtocolEndpointCIM_ServiceAccessPoint
SystemNameCIM_LogicalPortCIM_LogicalDevice
SystemNameCIM_NetworkPortCIM_LogicalDevice
SystemNameCIM_ObjectManagerCIM_Service
SystemNameCIM_ObjectManagerCommunicationMechanismCIM_ServiceAccessPoint
SystemNameCIM_ProtocolControllerCIM_LogicalDevice
SystemNameCIM_ProtocolEndpointCIM_ServiceAccessPoint
SystemNameCIM_ReplicationServiceCIM_Service
SystemNameCIM_SCSIProtocolControllerCIM_LogicalDevice
SystemNameCIM_SCSIProtocolEndpointCIM_ServiceAccessPoint
SystemNameCIM_SecurityServiceCIM_Service
SystemNameCIM_StorageConfigurationServiceCIM_Service
SystemNameCIM_StorageExtentCIM_LogicalDevice
SystemNameCIM_StorageHardwareIDManagementServiceCIM_Service
SystemNameCIM_StorageVolumeCIM_LogicalDevice
SystemNameCIM_TCPProtocolEndpointCIM_ServiceAccessPoint
SystemNameCIM_WBEMServiceCIM_Service
SystemNameMSFTSM_NamespaceCIM_Namespace
SystemNameMSFTSM_ObjectManagerCIM_Service
SystemNameMSFTSM_WSManCommunicationMechanismCIM_ServiceAccessPoint
SystemNameMSFTSMNET_EthernetPortCIM_LogicalDevice
SystemNameMSFTSMNET_IPProtocolEndpointCIM_ServiceAccessPoint
SystemNameMSISCSITARGET_ControllerConfigurationServiceCIM_Service
SystemNameMSISCSITARGET_iSCSIConfigurationServiceCIM_Service
SystemNameMSISCSITARGET_iSCSIProtocolEndpointCIM_ServiceAccessPoint
SystemNameMSISCSITARGET_ReplicationServiceCIM_Service
SystemNameMSISCSITARGET_SCSIProtocolControllerCIM_LogicalDevice
SystemNameMSISCSITARGET_StorageConfigurationServiceCIM_Service
SystemNameMSISCSITARGET_StorageHardwareIDManagementServiceCIM_Service
SystemNameMSISCSITARGET_StorageVolumeCIM_LogicalDevice
SystemNameMSISCSITARGET_TCPProtocolEndpointCIM_ServiceAccessPoint

Code samples for SystemName property

Get instance of WMI class using GetObject, SystemName property of MSFTSM_Namespace

Short VBS code - get a single specified instance of MSFTSM_Namespace 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:" + _
 "MSFTSM_Namespace.CreationClassName=""MSFTSM_NameSpace"",Name=""root\\interop"",ObjectManagerCreationClassName=""MSFTSM_ObjectManager"",ObjectManagerName=""MSFT:SM.ObjectManager"",SystemCreationClassName=""MSFTSM_System"",SystemName=""MS iSCSITarget: ..rootdomain.com""")
Wscript.Echo wmiObject.SystemName 'or other property name, see properties
See more VBS samples of MSFTSM_Namespace class

WMI query - sample windows WQL with C#, SystemName property of MSFTSM_Namespace

Get a specified instance of MSFTSM_Namespace 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 MSFTSM_Namespace Where CreationClassName=\"MSFTSM_NameSpace\"Name=\"root\\\\interop\"ObjectManagerCreationClassName=\"MSFTSM_ObjectManager\"ObjectManagerName=\"MSFT:SM.ObjectManager\"SystemCreationClassName=\"MSFTSM_System\"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("SystemName : {0}", m["SystemName"]);
  
}

WMI query - sample windows WQL with VB.Net, SystemName property of MSFTSM_Namespace

Get a specified instance of MSFTSM_Namespace 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 MSFTSM_Namespace Where CreationClassName="MSFTSM_NameSpace"Name="root\\interop"ObjectManagerCreationClassName="MSFTSM_ObjectManager"ObjectManagerName="MSFT:SM.ObjectManager"SystemCreationClassName="MSFTSM_System"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("SystemName : {0}", mObject("SystemName"))
Next
comments powered by Disqus
WUtils.com