StatusDescriptions - property in ROOT\StandardCimv2\MS_409 namespace

StatusDescriptions in other namespaces

List of classes with StatusDescriptions local property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
StatusDescriptionsCIM_ManagedSystemElementCIM_ManagedSystemElement

List of classes with StatusDescriptions derived property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
StatusDescriptionsCIM_ConcreteJobCIM_ManagedSystemElement
StatusDescriptionsCIM_EnabledLogicalElementCIM_ManagedSystemElement
StatusDescriptionsCIM_FilterEntryBaseCIM_ManagedSystemElement
StatusDescriptionsCIM_IKESAEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_IPProtocolEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_IPsecSAEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_JobCIM_ManagedSystemElement
StatusDescriptionsCIM_LANEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_LogicalDeviceCIM_ManagedSystemElement
StatusDescriptionsCIM_LogicalElementCIM_ManagedSystemElement
StatusDescriptionsCIM_LogicalPortCIM_ManagedSystemElement
StatusDescriptionsCIM_NetworkPipeCIM_ManagedSystemElement
StatusDescriptionsCIM_NetworkPortCIM_ManagedSystemElement
StatusDescriptionsCIM_ProtocolEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_RemoteServiceAccessPointCIM_ManagedSystemElement
StatusDescriptionsCIM_SecurityAssociationEndpointCIM_ManagedSystemElement
StatusDescriptionsCIM_ServiceAccessPointCIM_ManagedSystemElement
StatusDescriptionsMSFT_LocalPrinterPortCIM_ManagedSystemElement
StatusDescriptionsMSFT_LprPrinterPortCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetAdapterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetAddressFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetApplicationFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBaseIPProtocolCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheCacheCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheDataCacheCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheDataCacheExtensionCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheHashCacheCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCachePrimaryCacheCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheSecondaryCacheCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetBranchCacheStatusCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventNetworkAdapterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventPacketCaptureProviderCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventPacketCaptureTargetCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventProviderCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventProviderBaseCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventSessionCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventVmNetworkAdapterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetEventVmSwitchCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetInterfaceFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetInterfaceTypeFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetIPAddressCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetIPInterfaceCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetIPv4ProtocolCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetIPv6ProtocolCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetMainModeSACIM_ManagedSystemElement
StatusDescriptionsMSFT_NetNeighborCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetNetworkLayerSecurityFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetProtocolPortFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetQuickModeSACIM_ManagedSystemElement
StatusDescriptionsMSFT_NetServiceFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetTCPConnectionCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetTransportConnectionCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetTransportFilterCIM_ManagedSystemElement
StatusDescriptionsMSFT_NetUDPEndpointCIM_ManagedSystemElement
StatusDescriptionsMSFT_PrinterCIM_ManagedSystemElement
StatusDescriptionsMSFT_PrinterDriverCIM_ManagedSystemElement
StatusDescriptionsMSFT_PrinterPortCIM_ManagedSystemElement
StatusDescriptionsMSFT_PrintJobCIM_ManagedSystemElement
StatusDescriptionsMSFT_TcpIpPrinterPortCIM_ManagedSystemElement
StatusDescriptionsMSFT_WsdPrinterPortCIM_ManagedSystemElement

Code samples for StatusDescriptions property

Get instance of WMI class using GetObject, StatusDescriptions property of CIM_NetworkPipe

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

WMI query - sample windows WQL with C#, StatusDescriptions property of CIM_NetworkPipe

Get a specified instance of CIM_NetworkPipe 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\\StandardCimv2\\MS_409");

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

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

WMI query - sample windows WQL with VB.Net, StatusDescriptions property of CIM_NetworkPipe

Get a specified instance of CIM_NetworkPipe 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\StandardCimv2\MS_409")

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

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