IdentifyingDescriptions - property in ROOT\virtualization\v2 namespace

IdentifyingDescriptions in other namespaces

List of classes with IdentifyingDescriptions local property in ROOT\virtualization\v2 namespace

propertyClassOrigin
IdentifyingDescriptionsCIM_LogicalDeviceCIM_LogicalDevice
IdentifyingDescriptionsCIM_SystemCIM_System

List of classes with IdentifyingDescriptions derived property in ROOT\virtualization\v2 namespace

propertyClassOrigin
IdentifyingDescriptionsCIM_CDROMDriveCIM_LogicalDevice
IdentifyingDescriptionsCIM_ComputerSystemCIM_System
IdentifyingDescriptionsCIM_ControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_DesktopMonitorCIM_LogicalDevice
IdentifyingDescriptionsCIM_DiskDriveCIM_LogicalDevice
IdentifyingDescriptionsCIM_DisketteDriveCIM_LogicalDevice
IdentifyingDescriptionsCIM_DisplayCIM_LogicalDevice
IdentifyingDescriptionsCIM_DisplayControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_DVDDriveCIM_LogicalDevice
IdentifyingDescriptionsCIM_EthernetPortCIM_LogicalDevice
IdentifyingDescriptionsCIM_FCPortCIM_LogicalDevice
IdentifyingDescriptionsCIM_IDEControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_LogicalDiskCIM_LogicalDevice
IdentifyingDescriptionsCIM_LogicalPortCIM_LogicalDevice
IdentifyingDescriptionsCIM_MediaAccessDeviceCIM_LogicalDevice
IdentifyingDescriptionsCIM_MemoryCIM_LogicalDevice
IdentifyingDescriptionsCIM_NetworkPortCIM_LogicalDevice
IdentifyingDescriptionsCIM_PointingDeviceCIM_LogicalDevice
IdentifyingDescriptionsCIM_ProcessorCIM_LogicalDevice
IdentifyingDescriptionsCIM_ProtocolControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_SCSIProtocolControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_SerialControllerCIM_LogicalDevice
IdentifyingDescriptionsCIM_StorageExtentCIM_LogicalDevice
IdentifyingDescriptionsCIM_TapeDriveCIM_LogicalDevice
IdentifyingDescriptionsCIM_USBDeviceCIM_LogicalDevice
IdentifyingDescriptionsCIM_UserDeviceCIM_LogicalDevice
IdentifyingDescriptionsCIM_VideoHeadCIM_LogicalDevice
IdentifyingDescriptionsCIM_WiFiPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_ComputerSystemCIM_System
IdentifyingDescriptionsMsvm_DiskDriveCIM_LogicalDevice
IdentifyingDescriptionsMsvm_DisketteControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_DisketteDriveCIM_LogicalDevice
IdentifyingDescriptionsMsvm_DVDDriveCIM_LogicalDevice
IdentifyingDescriptionsMsvm_EmulatedEthernetPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_EthernetSwitchPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_ExternalEthernetPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_ExternalFcPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_FcSwitchPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_GuestServiceInterfaceComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_HeartbeatComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_IDEControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_InternalEthernetPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_KeyboardCIM_LogicalDevice
IdentifyingDescriptionsMsvm_KvpExchangeComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_LogicalDiskCIM_LogicalDevice
IdentifyingDescriptionsMsvm_MemoryCIM_LogicalDevice
IdentifyingDescriptionsMsvm_Physical3dGraphicsProcessorCIM_LogicalDevice
IdentifyingDescriptionsMsvm_PlannedComputerSystemCIM_System
IdentifyingDescriptionsMsvm_ProcessorCIM_LogicalDevice
IdentifyingDescriptionsMsvm_Ps2MouseCIM_LogicalDevice
IdentifyingDescriptionsMsvm_RdvComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_S3DisplayControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SCSIProtocolControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SerialControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SerialPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_ShutdownComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_Synthetic3DDisplayControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SyntheticDisplayControllerCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SyntheticEthernetPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SyntheticFcPortCIM_LogicalDevice
IdentifyingDescriptionsMsvm_SyntheticMouseCIM_LogicalDevice
IdentifyingDescriptionsMsvm_TimeSyncComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_VideoHeadCIM_LogicalDevice
IdentifyingDescriptionsMsvm_VirtualEthernetSwitchCIM_System
IdentifyingDescriptionsMsvm_VirtualFcSwitchCIM_System
IdentifyingDescriptionsMsvm_VssComponentCIM_LogicalDevice
IdentifyingDescriptionsMsvm_WiFiPortCIM_LogicalDevice

Code samples for IdentifyingDescriptions property

Get instance of WMI class using GetObject, IdentifyingDescriptions property of Msvm_Processor

Short VBS code - get a single specified instance of Msvm_Processor 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\virtualization\v2:" + _
 "Msvm_Processor.CreationClassName=""Msvm_Processor"",DeviceID=""Microsoft:B637F347-6A0E-4DEC-AF52-BD70CB80A21D\\0\\0"",SystemCreationClassName=""Msvm_ComputerSystem"",SystemName="".""")
Wscript.Echo wmiObject.IdentifyingDescriptions 'or other property name, see properties
See more VBS samples of Msvm_Processor class

WMI query - sample windows WQL with C#, IdentifyingDescriptions property of Msvm_Processor

Get a specified instance of Msvm_Processor 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\\virtualization\\v2");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM Msvm_Processor Where CreationClassName=\"Msvm_Processor\"DeviceID=\"Microsoft:B637F347-6A0E-4DEC-AF52-BD70CB80A21D\\\\0\\\\0\"SystemCreationClassName=\"Msvm_ComputerSystem\"SystemName=\"W2012SDC\"");

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

WMI query - sample windows WQL with VB.Net, IdentifyingDescriptions property of Msvm_Processor

Get a specified instance of Msvm_Processor 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\virtualization\v2")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM Msvm_Processor Where CreationClassName="Msvm_Processor"DeviceID="Microsoft:B637F347-6A0E-4DEC-AF52-BD70CB80A21D\\0\\0"SystemCreationClassName="Msvm_ComputerSystem"SystemName="W2012SDC"")

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