ElementName - property in ROOT\Microsoft\IPAM namespace

ElementName in other namespaces

List of classes with ElementName local property in ROOT\Microsoft\IPAM namespace

propertyClassOrigin
ElementNameCIM_ManagedElementCIM_ManagedElement

List of classes with ElementName derived property in ROOT\Microsoft\IPAM namespace

propertyClassOrigin
ElementNameCIM_AdminDomainCIM_ManagedElement
ElementNameCIM_CollectionCIM_ManagedElement
ElementNameCIM_CollectionOfMSEsCIM_ManagedElement
ElementNameCIM_ConcreteJobCIM_ManagedElement
ElementNameCIM_ConnectivityCollectionCIM_ManagedElement
ElementNameCIM_DatabaseParameterCIM_ManagedElement
ElementNameCIM_EnabledLogicalElementCIM_ManagedElement
ElementNameCIM_IPConnectivitySubnetCIM_ManagedElement
ElementNameCIM_IPProtocolEndpointCIM_ManagedElement
ElementNameCIM_JobCIM_ManagedElement
ElementNameCIM_LogEntryCIM_ManagedElement
ElementNameCIM_LogicalElementCIM_ManagedElement
ElementNameCIM_ManagedSystemElementCIM_ManagedElement
ElementNameCIM_ProductCIM_ManagedElement
ElementNameCIM_ProtocolEndpointCIM_ManagedElement
ElementNameCIM_RangeOfIPAddressesCIM_ManagedElement
ElementNameCIM_RecordForLogCIM_ManagedElement
ElementNameCIM_ScopedSettingDataCIM_ManagedElement
ElementNameCIM_ServiceAccessPointCIM_ManagedElement
ElementNameCIM_SettingCIM_ManagedElement
ElementNameCIM_SettingDataCIM_ManagedElement
ElementNameCIM_SoftwareFeatureCIM_ManagedElement
ElementNameCIM_SystemCIM_ManagedElement
ElementNameCIM_SystemSpecificCollectionCIM_ManagedElement
ElementNameMSFT_IPAM_AddressCIM_ManagedElement
ElementNameMSFT_IPAM_AddressSpaceCIM_ManagedElement
ElementNameMSFT_IPAM_BlockCIM_ManagedElement
ElementNameMSFT_IPAM_ConfigLogEntryCIM_ManagedElement
ElementNameMSFT_IPAM_CustomFieldCIM_ManagedElement
ElementNameMSFT_IPAM_CustomFieldAssociationCIM_ManagedElement
ElementNameMSFT_IPAM_CustomValueCIM_ManagedElement
ElementNameMSFT_IPAM_DBConfigCIM_ManagedElement
ElementNameMSFT_IPAM_DhcpConfigLogEntryCIM_ManagedElement
ElementNameMSFT_IPAM_DiscoveryDomainCIM_ManagedElement
ElementNameMSFT_IPAM_IPAddressUtilizationThresholdCIM_ManagedElement
ElementNameMSFT_IPAM_IpAuditLogEntryCIM_ManagedElement
ElementNameMSFT_IPAM_LogEntryCIM_ManagedElement
ElementNameMSFT_IPAM_RangeCIM_ManagedElement
ElementNameMSFT_IPAM_ServerCIM_ManagedElement
ElementNameMSFT_IPAM_ServerCapabilitiesCIM_ManagedElement
ElementNameMSFT_IPAM_ServerConfigurationCIM_ManagedElement
ElementNameMSFT_IPAM_ServerInventoryCIM_ManagedElement
ElementNameMSFT_IPAM_SubnetCIM_ManagedElement
ElementNameMSFT_IPAM_WCFServiceHostCollectionCIM_ManagedElement

Code samples for ElementName property

Get instance of WMI class using GetObject, ElementName property of MSFT_IPAM_Range

Short VBS code - get a single specified instance of MSFT_IPAM_Range 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\Microsoft\IPAM:" + _
 "MSFT_IPAM_Range.InstanceID=""Value""")
Wscript.Echo wmiObject.ElementName 'or other property name, see properties
See more VBS samples of MSFT_IPAM_Range class

WMI query - sample windows WQL with C#, ElementName property of MSFT_IPAM_Range

Get a specified instance of MSFT_IPAM_Range 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\\Microsoft\\IPAM");

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

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

WMI query - sample windows WQL with VB.Net, ElementName property of MSFT_IPAM_Range

Get a specified instance of MSFT_IPAM_Range 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\Microsoft\IPAM")

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

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