Hibernation is a feature of many computer operating systems where the contents of RAM are written to non-volatile storage such as a hard disk, as a file or on a separate partition, before powering off the computer. When the computer is restarted it reloads the content of memory and is restored to ...

learn more… | top users | synonyms

0
votes
0answers
2 views

What type of event does “Hibernate” classify as when writing a Windows Service?

What type of method or event do I need to call/fire in order for a Windows service I created to react to the system hibernating? I have tried the PowerBroadcastStatus properties with the OnPowerEvent, ...
0
votes
1answer
168 views

Win 8 hibernation file format?

I am writing a C#/C++ program which will decompress win8 hibernation file. However, I haven't found hiberfil.sys format for new OS. Is there any description of Win8 hiberfil.sys file format to parse ...
1
vote
3answers
253 views

Windows notifications when hibernation fails

I'm coding using C++ with WinAPIs, and to hibernate the computer I use the following call: SetSuspendState(TRUE, NULL, FALSE); But what happens is that if the computer has larger RAM array ...
0
votes
1answer
332 views

WPF Application: Wake computer from sleep or hibernation

The last day i've tried to make this work: Wake up my computer from sleep or hibernation, using a WPF application. Nothing i've tried worked. So far I've tried the most popular examples on the net.. ...
0
votes
2answers
473 views

android hibernation kill the app - onDestroy

I'm developing with API level 8 on android 2.2 I read this about the life cycle of an android app : http://developer.android.com/reference/android/app/Activity.html but there is no comments about the ...
1
vote
0answers
153 views

Win xp hibernate timer

I've been trying to create a .bat file with the cmd - %windir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate. I´m doing this because I want to keybind it. My problem is, that I would ...
0
votes
1answer
252 views

fidling with hibernation slowness on XP needed

Hibernating my laptop is very slow: 30min +, I have googled to no avail helas. some conflicting info and voodoo fidling seems to help some but not others (ie disabling DMA cache on the drive) My ...
2
votes
2answers
2k views

How do I make a hibernation batch file?

I'm trying to make a batch file that executes a simple command: shutdown -h I've created a .bat file with that exact line in it, yet when I run it, all it does is spam the command prompt like crazy. ...
0
votes
1answer
168 views

GetPwrCapabilities is giving me wrong sleep state results on some computers. How can I get a more accurate result?

I have a 64-bit Win7 Ultimate machine that I'm calling GetPwrCapabilities on. However it tells me that sleep state 4 (hibernation) is not available and that there is no hibernation file. I can ...
0
votes
1answer
375 views

How to retrieve computer's power management capabilities through WMI?

I'd like to use WMI to figure out what power management capabilities my computers have. Can they sleep? Can they hibernate? etc. There is a PowerManagementCapabilities field which seems to promise ...
2
votes
1answer
708 views

Are there suspend\resume signals in Linux?

My application needs to react on hibernation mode so it can do some action on suspending and other actions on resuming. I've found some distributive-specific ways to achieve it(Upower + DBus) but ...
0
votes
2answers
145 views

File system inodes after hibernation on Linux

I am interested to know how the file system data structures are handled when suspending to disk. I am wondering if it is possible to hibernate and then switch a disk (physically) and then resume. My ...
2
votes
1answer
503 views

Notification when waking up from hibernation C#

Is there a way to get a notification (event) in my C# 2.0 application when the system wakes up from hibernation? My application is running in system tray at the moment the system goes into ...
3
votes
2answers
812 views

My C# program running as Windows Service is blocking Windows XP from hibernation

I have Windows Service written in C#. It starts two threads, one is pooling a Web Service, second is waiting on a Monitor object for a new job to arrive. Besides that, the main thread acts as a WCF ...
0
votes
1answer
1k views

gethostbyname fails for local hostname after resuming from hibernate (Vista+7?)

Just wondering if anyone else has spotted this: On some user's machines running our software, occasionally the call to Win32 winsock gethostbyname fails with error code 11004. For the argument to ...
2
votes
5answers
2k views

How can I permanently bypass Windows XP startup?

I have an application for Windows XP. This application is deployed with the hardware. The application is the only application that ever runs on these machines. These machines are never connected to ...