I need to allow WakeTimers (computer wake up from sleep/hibernation) for all power plans set on plugged in to Enabled.

wake timers -> power options

I tried Win32_PowerSetting but it only works on english version of Windows.

I need to use .NET 2.0

Thanks for responses !

link|improve this question

69% accept rate
feedback

1 Answer

It appears that you can use WMI to change the setting.

http://www.daniweb.com/software-development/csharp/threads/272577

Microsoft has a WMI code creator that will help you out:

https://www.microsoft.com/download/en/confirmation.aspx?displayLang=en&id=8572

You will want to search under "root\CIMV2\power" for the power management stuff.

link|improve this answer
1  
But it works only for english version of Windows. I'm using following code ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2\\power", "SELECT * FROM Win32_PowerSetting WHERE ElementName = 'Allow wake timers'"); fxp czech version have: ElementName = 'Povolit časovače pro probuzení' And select by InstanceID does not work... – sczdavos Dec 14 '11 at 21:16
feedback

Your Answer

 
or
required, but never shown

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