description - property in ROOT\MSCluster namespace

description in other namespaces

List of classes with description local property in ROOT\MSCluster namespace

propertyClassOrigin
description__ExtendedStatus__ExtendedStatus
descriptionCIM_ManagedSystemElementCIM_ManagedSystemElement

List of classes with description derived property in ROOT\MSCluster namespace

propertyClassOrigin
descriptionCIM_ClusterCIM_ManagedSystemElement
descriptionCIM_ClusteringServiceCIM_ManagedSystemElement
descriptionCIM_ComputerSystemCIM_ManagedSystemElement
descriptionCIM_LogicalDeviceCIM_ManagedSystemElement
descriptionCIM_LogicalElementCIM_ManagedSystemElement
descriptionCIM_ServiceCIM_ManagedSystemElement
descriptionCIM_SystemCIM_ManagedSystemElement
descriptionCIM_UnitaryComputerSystemCIM_ManagedSystemElement
descriptionMSCluster_AvailableDiskCIM_ManagedSystemElement
descriptionMSCluster_AvailableDiskPartitionCIM_ManagedSystemElement
descriptionMSCluster_AvailableStoragePoolCIM_ManagedSystemElement
descriptionMSCluster_ClusterCIM_ManagedSystemElement
descriptionMSCluster_ClusterDiskCIM_ManagedSystemElement
descriptionMSCluster_ClusterDiskPartitionCIM_ManagedSystemElement
descriptionMSCluster_ClusterSharedVolumeCIM_ManagedSystemElement
descriptionMSCluster_DiskCIM_ManagedSystemElement
descriptionMSCluster_DiskPartitionCIM_ManagedSystemElement
descriptionMSCluster_ExtendedStatus__ExtendedStatus
descriptionMSCluster_LogicalElementCIM_ManagedSystemElement
descriptionMSCluster_NetworkCIM_ManagedSystemElement
descriptionMSCluster_NetworkInterfaceCIM_ManagedSystemElement
descriptionMSCluster_NodeCIM_ManagedSystemElement
descriptionMSCluster_ResourceCIM_ManagedSystemElement
descriptionMSCluster_ResourceGroupCIM_ManagedSystemElement
descriptionMSCluster_ResourceTypeCIM_ManagedSystemElement
descriptionMSCluster_ServiceCIM_ManagedSystemElement

Code samples for description property

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

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

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

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

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MSCluster_Service Where Name=\"Cluster Service\"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("description : {0}", m["description"]);
  
}

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

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

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MSCluster_Service Where Name="Cluster Service"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("description : {0}", mObject("description"))
Next
comments powered by Disqus
WUtils.com