3

I installed windows on my SSD as the C:\ drive and it is 71.6gb used out of 111gb.

I should note that when I select all the folders in C:\ and right click and view properties of all the folders in the drive, they total 15gb.

What gives? What is taking up a fake ~50gb?

2 Answers2

5

As you mentioned in your comment the additional space is being used by the pagefile.sys and hiberfil.sys files.

pagefile.sys is the Windows paging file which your computer will use to store running programs when your are running low on RAM. As you have a large amount of RAM (32GB), this file isn't likely to get frequent use (although it is still used even with large amounts of RAM). Whether to disable the paging file or not it up to you The following question discusses the pros and cons of disabling it.

Any reason not to disable the Windows pagefile given enough physical RAM?

hiberfil.sys is the Windows Hibernate file. Windows uses this file for both the Hibernate and Sleep functionality. When you request your computer to hibernate or sleep Windows will copy all of your RAM to the hard drive. This allows it to restore the system back to the state it was in before it was turned on. If you wish you can disable this functionality which will delete the file. Instructions for this can be found in this answer.

Disable Windows Hibernate

Dracs
  • 2,724
1

Firstly, you should install all windows updates. There's been an update that enables to delete backup files from windows update.
Then you can run a disc cleanup with windows tools.

You can disable suspend to disc (hiberfil.sys):

powercfg -h off
davidbaumann
  • 2,289