Click here to Skip to main content
Sign Up to vote bad
good
See more: C#
Can i get the cpu's currentClockSpeed, minClockSpeed, maxClockSped.
I have use wmi to do this,but i think the result is not good.
There are no minClockSpeed,and the currentClockSpeed and maxClockSped have the same value,
The currentClockSpeed never changed.My pc's cpu is I5-2300.it support the turbo boost.
Any help will be appreciated.
Posted 6-Nov-12 16:33pm
scoket354


1 solution

You can try using this..
using System;
using System.Management;
using Microsoft.Win32;
namespace ConsoleApplication1
{
        class Program
    {
        
        static void Main(string[] args)
        {
            CPUSpeed();
        }
     
        public static void CPUSpeed()
        {
            uint CurrentClockSpeed, MaxClockSpeed;
            using (ManagementObject Mobj = new ManagementObject("Win32_Processor.DeviceID='CPU0'"))
            {
                CurrentClockSpeed = (uint)(Mobj["CurrentClockSpeed"]);
                MaxClockSpeed = (uint)(Mobj["MaxClockSpeed"]);
 

                Console.WriteLine("CurrentClockSpeed: " + CurrentClockSpeed);
                Console.WriteLine("MaxClockSpeed: " + MaxClockSpeed);
               
                Console.ReadLine();
            }
        }
    }
    }
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Christian Graus 545
1 Ron Beyer 316
2 Tadit Dash 233
3 samadhan_kshirsagar 229
4 OriginalGriff 198
0 Sergey Alexandrovich Kryukov 7,061
1 Prasad_Kulkarni 3,815
2 OriginalGriff 3,557
3 _Amy 3,370
4 CPallini 3,034


Advertise | Privacy | Mobile
Web02 | 2.6.130619.1 | Last Updated 12 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid