OtherIdentifyingInfo - property in ROOT\virtualization\v2 namespace

OtherIdentifyingInfo in other namespaces

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

propertyClassOrigin
OtherIdentifyingInfoCIM_LogicalDeviceCIM_LogicalDevice
OtherIdentifyingInfoCIM_SystemCIM_System

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

propertyClassOrigin
OtherIdentifyingInfoCIM_CDROMDriveCIM_LogicalDevice
OtherIdentifyingInfoCIM_ComputerSystemCIM_System
OtherIdentifyingInfoCIM_ControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_DesktopMonitorCIM_LogicalDevice
OtherIdentifyingInfoCIM_DiskDriveCIM_LogicalDevice
OtherIdentifyingInfoCIM_DisketteDriveCIM_LogicalDevice
OtherIdentifyingInfoCIM_DisplayCIM_LogicalDevice
OtherIdentifyingInfoCIM_DisplayControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_DVDDriveCIM_LogicalDevice
OtherIdentifyingInfoCIM_EthernetPortCIM_LogicalDevice
OtherIdentifyingInfoCIM_FCPortCIM_LogicalDevice
OtherIdentifyingInfoCIM_IDEControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_LogicalDiskCIM_LogicalDevice
OtherIdentifyingInfoCIM_LogicalPortCIM_LogicalDevice
OtherIdentifyingInfoCIM_MediaAccessDeviceCIM_LogicalDevice
OtherIdentifyingInfoCIM_MemoryCIM_LogicalDevice
OtherIdentifyingInfoCIM_NetworkPortCIM_LogicalDevice
OtherIdentifyingInfoCIM_PointingDeviceCIM_LogicalDevice
OtherIdentifyingInfoCIM_ProcessorCIM_LogicalDevice
OtherIdentifyingInfoCIM_ProtocolControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_SCSIProtocolControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_SerialControllerCIM_LogicalDevice
OtherIdentifyingInfoCIM_StorageExtentCIM_LogicalDevice
OtherIdentifyingInfoCIM_TapeDriveCIM_LogicalDevice
OtherIdentifyingInfoCIM_USBDeviceCIM_LogicalDevice
OtherIdentifyingInfoCIM_UserDeviceCIM_LogicalDevice
OtherIdentifyingInfoCIM_VideoHeadCIM_LogicalDevice
OtherIdentifyingInfoCIM_WiFiPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_ComputerSystemCIM_System
OtherIdentifyingInfoMsvm_DiskDriveCIM_LogicalDevice
OtherIdentifyingInfoMsvm_DisketteControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_DisketteDriveCIM_LogicalDevice
OtherIdentifyingInfoMsvm_DVDDriveCIM_LogicalDevice
OtherIdentifyingInfoMsvm_EmulatedEthernetPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_EthernetSwitchPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_ExternalEthernetPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_ExternalFcPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_FcSwitchPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_GuestServiceInterfaceComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_HeartbeatComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_IDEControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_InternalEthernetPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_KeyboardCIM_LogicalDevice
OtherIdentifyingInfoMsvm_KvpExchangeComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_LogicalDiskCIM_LogicalDevice
OtherIdentifyingInfoMsvm_MemoryCIM_LogicalDevice
OtherIdentifyingInfoMsvm_Physical3dGraphicsProcessorCIM_LogicalDevice
OtherIdentifyingInfoMsvm_PlannedComputerSystemCIM_System
OtherIdentifyingInfoMsvm_ProcessorCIM_LogicalDevice
OtherIdentifyingInfoMsvm_Ps2MouseCIM_LogicalDevice
OtherIdentifyingInfoMsvm_RdvComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_S3DisplayControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SCSIProtocolControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SerialControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SerialPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_ShutdownComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_Synthetic3DDisplayControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SyntheticDisplayControllerCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SyntheticEthernetPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SyntheticFcPortCIM_LogicalDevice
OtherIdentifyingInfoMsvm_SyntheticMouseCIM_LogicalDevice
OtherIdentifyingInfoMsvm_TimeSyncComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_VideoHeadCIM_LogicalDevice
OtherIdentifyingInfoMsvm_VirtualEthernetSwitchCIM_System
OtherIdentifyingInfoMsvm_VirtualFcSwitchCIM_System
OtherIdentifyingInfoMsvm_VssComponentCIM_LogicalDevice
OtherIdentifyingInfoMsvm_WiFiPortCIM_LogicalDevice

Code samples for OtherIdentifyingInfo property

Get instance of WMI class using GetObject, OtherIdentifyingInfo 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.OtherIdentifyingInfo 'or other property name, see properties
See more VBS samples of Msvm_Processor class

WMI query - sample windows WQL with C#, OtherIdentifyingInfo 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("OtherIdentifyingInfo : {0}", m["OtherIdentifyingInfo"]);
  
}

WMI query - sample windows WQL with VB.Net, OtherIdentifyingInfo 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("OtherIdentifyingInfo : {0}", mObject("OtherIdentifyingInfo"))
Next
WUtils.com
online utility - toplist