Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
You can't delete them directly, but you can disable/configure the features in Windows. hiberfil.sys is related to hibernation and usually has the size of the memory installed in the machine. If yo...
#2: Post edited
- You can't delete them directly, but you can disable/configure the features in Windows.
hiberfil.sys is related to hibernation and usually has the size of the memory installed in the machine. If you use hibernation, you need this file. If you don't use hibernation, you can disable the feature by running this command in an elevated command prompt:- ```powershell
- powercfg.exe /hibernate off
- ```
pagefile.sys is your virtual memory, also known as a swap file. Memory that is currently not being actively used is swapped out to it to free up memory for running processes. It is not recommended to disable swap, but you can reduce the size if you don't need all of it.- Open `sysdm.cpl`, either by running <kbd>Win</kbd>+<kbd>R</kbd>, or by just typing it with the start menu open.
- 1. go to `Advanced`
- 2. under `Performance` click on `Settings`
- 3. Under `Virtual Memory`, click on `Change`
- Here you can select automatic management of your virtual memory files, or specify a size per drive.
- You can also disable it completely, but as already mentioned, this is not recommended.
- You can't delete them directly, but you can disable/configure the features in Windows.
- **hiberfil.sys** is related to hibernation and usually has the size of the memory installed in the machine. If you use hibernation, you need this file. If you don't use hibernation, you can disable the feature by running this command in an elevated command prompt:
- ```powershell
- powercfg.exe /hibernate off
- ```
- **pagefile.sys** is your virtual memory, also known as a swap file. Memory that is currently not being actively used is swapped out to it to free up memory for running processes. It is not recommended to disable swap, but you can reduce the size if you don't need all of it.
- Open `sysdm.cpl`, either by running <kbd>Win</kbd>+<kbd>R</kbd>, or by just typing it with the start menu open.
- 1. go to `Advanced`
- 2. under `Performance` click on `Settings`
- 3. Under `Virtual Memory`, click on `Change`
- Here you can select automatic management of your virtual memory files, or specify a size per drive.
- You can also disable it completely, but as already mentioned, this is not recommended.
#1: Initial revision
You can't delete them directly, but you can disable/configure the features in Windows. hiberfil.sys is related to hibernation and usually has the size of the memory installed in the machine. If you use hibernation, you need this file. If you don't use hibernation, you can disable the feature by running this command in an elevated command prompt: ```powershell powercfg.exe /hibernate off ``` pagefile.sys is your virtual memory, also known as a swap file. Memory that is currently not being actively used is swapped out to it to free up memory for running processes. It is not recommended to disable swap, but you can reduce the size if you don't need all of it. Open `sysdm.cpl`, either by running <kbd>Win</kbd>+<kbd>R</kbd>, or by just typing it with the start menu open. 1. go to `Advanced` 2. under `Performance` click on `Settings` 3. Under `Virtual Memory`, click on `Change` Here you can select automatic management of your virtual memory files, or specify a size per drive. You can also disable it completely, but as already mentioned, this is not recommended.
