MSFT_PhysicalDiskToStorageReliabilityCounter, ROOT\Microsoft\Windows\Storage\providers_v2, c# samples

Class | Childs (1) | Methods | Properties (2) | Qualifiers (3) | Instances (1) | Namespaces (3)
Samples: VB Script | C# | VB.Net | Search on:Microsoft

c# Code samples

The class MSFT_PhysicalDiskToStorageReliabilityCounter is abstract and serves only as a base for new classes. You cannot create instances of abstract class, see derived classes.

WMI query - sample windows WQL with C#, PhysicalDisk property of MSFT_PhysicalDiskToStorageReliabilityCounter

Short C# sample code to get the abstract class MSFT_PhysicalDiskToStorageReliabilityCounter and its properties.
See in another language: VBScript, VB.Net.
	//https://wutils.com/wmi/
	
	//Project -> Add reference -> System.Management
	//using System.Management;
	
	//set the class name and namespace
	string NamespacePath = "\\\\.\\ROOT\\Microsoft\\Windows\\Storage\\providers_v2";
	string ClassName = "MSFT_PhysicalDiskToStorageReliabilityCounter";
	
	//Create ManagementClass
	ManagementClass mClass = new ManagementClass(NamespacePath + ":" + ClassName);
	
	// List the properties in the MSFT_PhysicalDiskToStorageReliabilityCounter class
	PropertyDataCollection lproperties = mClass.Properties;
	
	// display the properties  
	Console.WriteLine(string.Format("Property Names in {0}: ",ClassName));
	foreach (PropertyData property in lproperties)
	{
	    Console.WriteLine("name: {0}, Origin: {1}", property.Name, property.Origin );
	}	
	

WMI query - list of class instances

List of all instances of MSFT_PhysicalDiskToStorageReliabilityCounter class in C#.
See in another language: VBScript, VB.Net.
	//https://wutils.com/wmi/
	
	//Project -> Add reference -> System.Management
	//using System.Management;
	
	//set the class name and namespace
	string NamespacePath = "\\\\.\\ROOT\\Microsoft\\Windows\\Storage\\providers_v2";
	string ClassName = "MSFT_PhysicalDiskToStorageReliabilityCounter";
	
	//Create ManagementClass
	ManagementClass oClass = new ManagementClass(NamespacePath + ":" + ClassName);
	
	//Get all instances of the class and enumerate them
	foreach (ManagementObject oObject in oClass.GetInstances())
	{
		//access a property of the Management object
		Console.WriteLine("PhysicalDisk : {0}", oObject["PhysicalDisk"]);
	}
	
WUtils.com
online utility - toplist