Created
October 14, 2018 20:20
-
-
Save mortenege/065fd0dcfd103c03801ef894e71e86f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Windows 7 Memory and Space tricks | |
## Clear space on C drive by disabling 'Hibernation' | |
have a look at the `Hiberfil.sys`-file at the root of C. This will be huge and can be up to the amount of ram in the system (8gb RAM -> <8gb occupied disk space) | |
To disable Hibernation (A **Warning** is due, I guess) enter `powercfg -h off` and this will delete the file immediately. To enable hibernation again `powercfg -h on`. | |
## Manage Virtual Memory | |
Follow [this guide](https://www.online-tech-tips.com/computer-tips/simple-ways-to-increase-your-computers-performace-configuring-the-paging-file/) on how to set up the virtual management. Basically | |
1. On the root drive minimize the page file to 400 - 400 | |
2. For an additional drive or partition set the page file to 1.5x RAM (eg. 12000 - 12000 for 8gb) | |
3. Now the `pagefile.sys` in the C root directory will be smaller! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment