I got directly from WMI counters...
static void Main(string[] args)
{
String dbase = "root\\WMI";
String query1 = "select Ndis80211ReceivedSignalStrength from MSNdis_80211_ReceivedSignalStrength where active = true";
ManagementObjectSearcher searcher = new ManagementObjectSearcher(@dbase,query1);
foreach (ManagementObject mo in searcher.Get())
{
Console.WriteLine("{0} dBm",mo["Ndis80211ReceivedSignalStrength"]);
}
}
Studing these controllers, I think that we can obtain specific information from motherboard sensors... Imagine, grab the CPU temperature without Speedfan or MBM....
A great program to explorer these counters is WMI Explorer....
