Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Under Win7, open Control Panel -> Power Options -> Advanced Settings->Processor power management.

you can see Minimum Processor state, Maximum Processor state.
I want to get the value of Processor state by C#.for example 5%,100%. I use the command "powercfg" in c#,i noly can get the value of "monitor-timeout-ac" and so on.
I can not get the value of Processor
state.

How can I achieve this?

share|improve this question

1 Answer

You need to dllimport powrprof.dll, and use ReadProcessorPwrScheme API, then access the processorPolicyInfoAc.DemotePercent and ProcessorPolicyInfoAc.PromotePercent

See the code bellow. Not tested but it will show you the way (I use this code to get DynamicThrottle information and it works).


    struct PROCESSOR_POWER_POLICY_INFO
        {
            public uint TimeCheck;
            public uint DemoteLimit;
            public uint PromoteLimit;
            public byte DemotePercent;
            public byte PromotePercent;
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
            public byte[] Spare;
            public uint AllowBits;
        }

        struct PROCESSOR_POWER_POLICY
        {
            public uint Revision;
            public byte DynamicThrottle;
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
            public byte[] Spare;
            public uint Reserved;
            public uint PolicyCount;
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
            public PROCESSOR_POWER_POLICY_INFO[] Policy;
        }

        struct MACHINE_PROCESSOR_POWER_POLICY
        {
            public uint Revision;                   // ULONG
            public PROCESSOR_POWER_POLICY ProcessorPolicyAc;
            public PROCESSOR_POWER_POLICY ProcessorPolicyDc;
        }


        [DllImport("powrprof.dll", SetLastError = true)]
        static extern bool ReadProcessorPwrScheme(uint uiID, out MACHINE_PROCESSOR_POWER_POLICY pMachineProcessorPowerPolicy);
        public void ReadProcessorPowerScheme()
        {
            MACHINE_PROCESSOR_POWER_POLICY machinep = new MACHINE_PROCESSOR_POWER_POLICY();
            uint scheme = 0;

            if (ReadProcessorPwrScheme(scheme, out machinep))
            {

                //Then loop through machinep.ProcessorPolicyAc.Policy[]; array
                //Use:  PROCESSOR_POWER_POLICY_INFO processorPolicyInfoAc = mppp.ProcessorPolicyAc.Policy[i];
                //Use: processorPolicyInfoAc.DemotePercent;
                //Use: processorPolicyInfoAc.PromotePercent;

                //And don't forget to do the same for Dc (Dc is battery)
            }
        }

Edgar Rocha Carvalho

share|improve this answer
Thank you for your help. – Scoket Joe Nov 18 '12 at 11:52
I have solved it by powercfg command. – Scoket Joe Nov 29 '12 at 2:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.