Can I move hiberfil.sys to another drive?

76

8

I am running out of space on my %SYSTEMDRIVE% on Windows. There is hiberfil.sys file that size of it is almost 3GB.

I understand that hiberfil.sys is used for the windows hibernation feature. https://support.microsoft.com/en-us/help/13770/windows-shut-down-sleep-hibernate-your-pc

The Hiberfil.sys hidden system file is located in the root folder of the drive where the operating system is installed. The Windows Kernel Power Manager reserves this file when you install Windows. The size of this file is approximately equal to how much random access memory (RAM) is installed on the computer.

The computer uses the Hiberfil.sys file to store a copy of the system memory on the hard disk when the hybrid sleep setting is turned on. If this file is not present, the computer cannot hibernate.

I don't want to disable the hibernatation feature.

Is there any way to move hiberfil.sys to another drive other than %SYSTEMDRIVE%?

hamed

Posted 2012-03-20T11:28:32.840

Reputation: 4 960

How about a symbolic link? – Ahmed – 2015-10-08T01:29:47.917

5

Possible duplicate of How to change location of hibernation file in Windows 7?

– PJTraill – 2016-09-02T13:05:39.170

I noticed that hibernation has an entry in BCD, when I was using bcdedit.exe /enum all – None – 2017-01-16T11:50:55.567

2No you cannot, there is simply no way. – HackToHell – 2012-03-20T11:41:37.217

22

Obligatory Raymond Chen: Windows Confidential: The File System Paradox

– user1686 – 2012-03-20T12:12:08.153

1This has to be a dupe. . . – surfasb – 2012-03-20T13:34:55.390

2The "external-drive" tag is also worrying. Computers don't like it when their memory can walk off. – MSalters – 2012-03-20T13:39:39.820

Answers

24

I don't think it is possible to "redirect" the path of your hiberfil.sys from "C:\hiberfil.sys" to "D:\hiberfil.sys" for example.

I did some research on Google and in the Windows registry, and found nothing but the option to disable it (and consequently delete hiberfil.sys file):

  1. Click Start, and then type cmd in the Start Search box.
  2. In the search results list, right-click Command Prompt, and then click Run as Administrator.
  3. When you are prompted by User Account Control, click Continue.
  4. At the command prompt, type powercfg.exe /hibernate off, and then press ENTER.
  5. Type exit and then press ENTER to close the Command Prompt window.

Diogo

Posted 2012-03-20T11:28:32.840

Reputation: 28 202

2@cjb110 Yes. But any way it useful – FindOutIslamNow – 2018-03-14T13:14:01.507

it's not possible to move the file but it's possible to resize the file

– phuclv – 2018-06-30T02:18:00.647

12This is not the answer, the OP doesn't want to disable hibernation. – cjb110 – 2013-02-08T10:44:12.550

1Thanks, once I ran the comment, the hiberfil.sys automatically remove. Thanks, I now have additional 32Gb on my SSD – Valamas – 2013-11-13T10:31:47.560

19

Instead of disabling hibernation, you can reduce the size of the hibernation file to a maximum of 50% of the total physical memory:

  1. Click Start, and then type cmd in the Start Search box.
  2. In the search results list, right-click Command Prompt, and then click Run as Administrator.
  3. When you are prompted by User Account Control, click Continue.
  4. At the command prompt, type powercfg.exe /hibernate /size 50, and then press ENTER.
  5. Type exit and then press ENTER to close the Command Prompt window.

The size of hiberfil.sys will be reduced immediately.

Update: Be aware that if your system RAM cannot be compressed to 50% of its size when you hibernate, you may get a blue screen with INTERNAL_POWER_ERROR similar to this one, which might be difficult to diagnose:

BSOD "INTERNAL_POWER_ERROR" in Windows 7 on hibernation

mhu

Posted 2012-03-20T11:28:32.840

Reputation: 321

Diogo posted exactly the same solution before, and with attribution. -1 – Joris Groosman – 2015-11-03T14:55:34.823

9@JorisGroosman This not the same solution. Please note the difference in step 4. The OP didn't want to disable hibernation as Diogo's solution does. The solution above cuts the size used by the hibernation in half. – mhu – 2015-11-05T19:52:25.290

Yes just to confirm, I'm someone who came to this post with a similar question - it worked here. It reduced the size of my hibernation file from over 6 to just over 4 gigabytes. It wouldn't let me reduce to less than 50% of RAM so that may be as low as it gets - I tried 25% but the file stayed the same size as for 50%. I have 8 gigs of installed RAM – Robert Walker – 2017-07-17T01:16:07.393

16

Unlike SLEEP mode, where everything that is running on your system is stored in your RAM, (which is kept powered), HIBERNATION copies the entire state of your RAM to a file called HIBERFIL.sys. That is why that file has to be at least as big as the size of your RAM. Your computer turns off altogether, as it doesn't have to have any of your components under constant power.

BUT, next time you want to get your machine woken up from Hibernation state, to find it at the same point where you left it, it needs that boot-up sector of your System disk...

Unfortunately there's no way to move that HIBERFIL.sys around to your other HDDs or partitions.

This is unlike PAGEFILE.sys, which you CAN relocate to some other physical disk or partition, so your system disk doesn't have to handle the Pagefile.

Tutan C'mon

Posted 2012-03-20T11:28:32.840

Reputation: 185

1

@Valamas Verdiem has been since bought by another company and the site has been disabled. Here's an archived version of that link: https://web.archive.org/web/20150317121812/http://verdiem.com/blog/2011-11-15/put-them-sleep-dont-hibernate

The information listed there is basically that Sleep doesn't use much more energy than Hibernatio, but boots up faster.

– sp00n – 2016-07-07T17:35:40.713

3

This article helped me decide I don't want hibernation and to save the to be able to remove the 32Gb file from my SSD. http://www.verdiem.com/blog/2011-11-15/put-them-sleep-dont-hibernate

– Valamas – 2013-11-13T10:29:44.583

5

You can only disable it, not move it because, when present, hiberfil.sys is needed much earlier in the OS boot sequence.

At that point in the boot sequence, the OS is not able to understand symbolic links,

So the only place it will look for hiberfil.sys is on the OS root drive. More on Relocate hiberfil.sys

Dark Knight

Posted 2012-03-20T11:28:32.840

Reputation: 158

Thank you for the sensible explanation about why this can't be moved! – glenviewjeff – 2019-10-08T13:39:48.567

0

It should be on the same disk as booloader (NTLDR/BOOTMGR) so bootloader can pick it up early and copy to RAM.

Try moving the bootloader.

Mikhail Kupchik

Posted 2012-03-20T11:28:32.840

Reputation: 2 381

6False answer. In Windows Vista and later, the bootloader is located on a hidden partition while hiberfil.sys is located in C: – None – 2017-01-16T11:48:40.173

After moving bootloader, How could I redirect the path of hiberfil.sys ? – hamed – 2012-03-20T19:32:41.550

It will be on the same partition as bootloader, in the root folder. – Mikhail Kupchik – 2012-03-29T11:47:20.377

5My bootloader is in other drive, I was suspected. I think it don't related to bootloader. It related the Windows partition. – hamed – 2012-03-30T14:49:05.947

1This is actually the closest to an answer I think, you can't tell windows to look some where else. But it depends does windows look at the root of where it's installed, or the root of the boot drive?? (these by default are the same, but by no means have to be). If its the latter then this answer will work (if fiddly to achieve). – cjb110 – 2013-02-08T10:43:39.353

rereading the Raymond Chen post, it does say boot drive, not Windows install drive... – cjb110 – 2013-02-08T10:45:25.573

0

To stop the Hibernation service in Windows Vista or 7:

  1. Click on the Start button and in the Search field type cmd
  2. When the command prompt opens, type powercfg.exe -h off
  3. Exit the command prompt

At this point a few important things will have taken place in Windows:

  1. hiberfil.sys no longer exists in Explorer (i.e. is deleted, thus freeing up a lot of disk space),
  2. "Hibernate" is no longer available from the Shutdown options in the Start menu, and
  3. obviously, you will no longer be able to place Windows into a hibernation state (S4).

Lars

Posted 2012-03-20T11:28:32.840

Reputation: 49

Likey - coz I no longer hibernate - I use sleep – killjoy – 2018-08-14T20:14:07.300

6In the question is explicitly stated "I don't want to disable hibernate." Hence your is not helpful in this case. – Robert – 2012-11-23T15:56:34.193