description - property in ROOT\Microsoft\IPAM\MS_409 namespace

description in other namespaces

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

propertyClassOrigin
description__ExtendedStatus__ExtendedStatus
descriptionCIM_ManagedElementCIM_ManagedElement

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

propertyClassOrigin
descriptionCIM_AdminDomainCIM_ManagedElement
descriptionCIM_CollectionCIM_ManagedElement
descriptionCIM_CollectionOfMSEsCIM_ManagedElement
descriptionCIM_ConcreteJobCIM_ManagedElement
descriptionCIM_ConnectivityCollectionCIM_ManagedElement
descriptionCIM_DatabaseParameterCIM_ManagedElement
descriptionCIM_EnabledLogicalElementCIM_ManagedElement
descriptionCIM_IPConnectivitySubnetCIM_ManagedElement
descriptionCIM_IPProtocolEndpointCIM_ManagedElement
descriptionCIM_JobCIM_ManagedElement
descriptionCIM_LogEntryCIM_ManagedElement
descriptionCIM_LogicalElementCIM_ManagedElement
descriptionCIM_ManagedSystemElementCIM_ManagedElement
descriptionCIM_ProductCIM_ManagedElement
descriptionCIM_ProtocolEndpointCIM_ManagedElement
descriptionCIM_RangeOfIPAddressesCIM_ManagedElement
descriptionCIM_RecordForLogCIM_ManagedElement
descriptionCIM_ScopedSettingDataCIM_ManagedElement
descriptionCIM_ServiceAccessPointCIM_ManagedElement
descriptionCIM_SettingCIM_ManagedElement
descriptionCIM_SettingDataCIM_ManagedElement
descriptionCIM_SoftwareFeatureCIM_ManagedElement
descriptionCIM_SystemCIM_ManagedElement
descriptionCIM_SystemSpecificCollectionCIM_ManagedElement
descriptionMSFT_IPAM_AddressCIM_ManagedElement
descriptionMSFT_IPAM_AddressSpaceCIM_ManagedElement
descriptionMSFT_IPAM_BlockCIM_ManagedElement
descriptionMSFT_IPAM_ConfigLogEntryCIM_ManagedElement
descriptionMSFT_IPAM_CustomFieldCIM_ManagedElement
descriptionMSFT_IPAM_CustomFieldAssociationCIM_ManagedElement
descriptionMSFT_IPAM_CustomValueCIM_ManagedElement
descriptionMSFT_IPAM_DBConfigCIM_ManagedElement
descriptionMSFT_IPAM_DhcpConfigLogEntryCIM_ManagedElement
descriptionMSFT_IPAM_DiscoveryDomainCIM_ManagedElement
descriptionMSFT_IPAM_IPAddressUtilizationThresholdCIM_ManagedElement
descriptionMSFT_IPAM_IpAuditLogEntryCIM_ManagedElement
descriptionMSFT_IPAM_LogEntryCIM_ManagedElement
descriptionMSFT_IPAM_RangeCIM_ManagedElement
descriptionMSFT_IPAM_ServerCIM_ManagedElement
descriptionMSFT_IPAM_ServerCapabilitiesCIM_ManagedElement
descriptionMSFT_IPAM_ServerConfigurationCIM_ManagedElement
descriptionMSFT_IPAM_ServerInventoryCIM_ManagedElement
descriptionMSFT_IPAM_SubnetCIM_ManagedElement
descriptionMSFT_IPAM_WCFServiceHostCollectionCIM_ManagedElement

Code samples for description property

Get instance of WMI class using GetObject, description property of CIM_IPProtocolEndpoint

Short VBS code - get a single specified instance of CIM_IPProtocolEndpoint 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\ms_409:" + _
 "CIM_IPProtocolEndpoint.CreationClassName=""Value"",Name=""Value"",SystemCreationClassName=""Value"",SystemName=""Value""")
Wscript.Echo wmiObject.description 'or other property name, see properties
See more VBS samples of CIM_IPProtocolEndpoint class

WMI query - sample windows WQL with C#, description property of CIM_IPProtocolEndpoint

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

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

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

WMI query - sample windows WQL with VB.Net, description property of CIM_IPProtocolEndpoint

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

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

'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("description : {0}", mObject("description"))
Next
WUtils.com
online utility - toplist