Is there a way to programmatically determine how busy a physical disk is in C # without using System.Diagnostics.PerformanceCounter ?
I ask because the documentation for System.Diagnostics.PerformanceCounter states that the user requires elevated privileges and must be an administrator or a member of the user group of performance counters. I do not have any of these as an option, and I must assume that the user is running my process in the user account.
In my opinion, any process running under a user account that does not have administrator rights will have limited access to information about the system, if any ...
source
share