Do I need hiberfil.sys if I only use "Sleep" on a Windows 7 instance that's on an SSD?

I don't know how "Sleep" works (that is, whether it puts everything that's currently in DRAM main memory into hiberfil.sys and then when I wake up the system it load everything back into memory).

I currently have 16 GB RAM and Windows 7 64-bit on a M4 128 GB SSD.

hiberfil.sys is taking up 12 GB of valuable SSD space. Needless to say, I want to free it up.


Solution 1:

hiberfil.sys is used by Hibernate, not by Sleep. The only surefire method of disabling Hibernate, and thus removing hiberfil.sys, on Windows Vista and Windows 7, is through the command prompt and the following steps:

  1. Open a command prompt with administrative privileges.
  2. Enter “powercfg.exe -h off”.
  3. Exit the command prompt.

Solution 2:

You should not delete this file. Sleep and Hibernate work together in Windows 7 and Windows 8.

Windows 7 has a mode named hybrid sleep, used on desktop computers. To quote Microsoft:

Hybrid sleep is designed primarily for desktop computers. Hybrid sleep is a combination of sleep and hibernate—it puts any open documents and programs in memory and on your hard disk, and then puts your computer into a low-power state so that you can quickly resume your work. That way, if a power failure occurs, Windows can restore your work from your hard disk. When hybrid sleep is turned on, putting your computer into sleep automatically puts your computer into hybrid sleep. Hybrid sleep is typically turned on by default on desktop computers.

Also, on laptops, if your laptop battery charge gets critically low while the computer is asleep, Windows automatically puts the laptop into hibernation mode.

Therefore, do not delete this file, unless you turn off both Sleep and Hibernation in your active power plan.

For more information on Sleep and Hibernation, I recommend reading this FAQ: Sleep and hibernation: frequently asked questions.

Solution 3:

The accepted answer by alexs was -almost- right for me, with only the small variation that I had to use slash instead of minus:

powercfg /h off

OS: Windows 7 Professional

Please see the accepted answer here for more details: Using Powercfg to remove Hibernation file does not work , even though I am the Administrator

Solution 4:

After so many years, Windows 10 has become the most popular system now. In case somebody wants to delete this file on Windows 10, I have something to remind you before you do so.

If you disable the hibernation function using "powercfg.exe -h off" on Windows 10, you will lose the fast startup function too. Because the fast startup function needs this file.

So, if your disk space is not that small, it's better not to turn off the hibernation function on Windows 10.

Solution 5:

You can change the size of hiberfile.sys, on Win7-Win10 by opening an elevated command prompt

  • press the windows key
  • type "cmd"
  • right-click on "cmd" in the list that pops up
  • choose "run as administrator"

then type the the command,

Powercfg –h –size percentsize 

replace percentsize with your value (for example, 60%), but it cannot be smaller than 50. See here for some pics.