I know that one can call the following API to hibernate the system:

SetSuspendState(TRUE, FALSE, FALSE);

But is there any way to find out if "real" hibernation is available for the current Windows user?

Here's what I mean:

  1. If an admin calls:

    powercfg.exe /hibernate off
    

    the API above will put system into a Sleep mode. So how do you know (from a C++ program) that this will happen instead of hibernation?

  2. I'm not sure if there's a group policy that can prohibit a user from hibernating a computer connected to an Active Directory?

Edit I am aware of the (dated) IsPwrHibernateAllowed API. I find that it doesn't work: it still returns the same result even if powercfg.exe /hibernate off was called. Am I doing something wrong there? Can someone explain why IsPwrHibernateAllowed doesn't work for me?

link|improve this question

2  
Google "IsPwrHibernateAllowed" – Hans Passant Dec 8 '11 at 23:16
@Hans Passant IsPwrHibernateAllowed is an outdated API, but it still returns the same result even if powercfg.exe /hibernate off was called. I also scoured all over those Power Management Functions with any luck (( – ahmd0 Dec 8 '11 at 23:29
@ahmd0: That kind of information should obviously have been in the question! Prevent people from wasting time coming up with the obvious answers that you already tried? – sehe Dec 9 '11 at 7:57
Good addition. So, can you answer your question? – ahmd0 Dec 9 '11 at 8:14
feedback

1 Answer

up vote 4 down vote accepted

Take a look at SYSTEM_POWER_CAPABILITIES structure that can be obtained with CallNtPowerInformation. Specifically, look at HiberFilePresent field.

link|improve this answer
Thanks. It looks promising. Although I still can't find a parameter to use to determine what I need? – ahmd0 Dec 9 '11 at 8:12
I think I got it. Thanks for the clue: SYSTEM_POWER_CAPABILITIES:HiberFilePresent – ahmd0 Dec 9 '11 at 18:25
@ahmd0: Yep, that's what I was looking at when decided to post an answer. Sorry I didn't mention it explicitly. – Violet Giraffe Dec 9 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

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