Windows – Hard Faults with 12GB of RAM on Windows 7

memorywindows 7

I am a total newbie in matter of hardware.

In order to increase the performance of my laptop (Asus ROG G75VW) for multitasking (I had only 4GB and Android Studio, Genymotion, Firefox, etc. were too much), I bought 8GB extra RAM.

I read on the web here and here that hard fault are generally due to a lack of physical memory, and that increasing RAM should lower hard faults.

The key thing to pay attention to is the Hard Faults/sec graph, which tells you how many times an application attempted to read memory that Windows was forced to push into the pagefile because of a lack of memory.

So I was not expecting to see again hard faults, but when I open the ressource monitor, I see something like this :

enter image description here

Note : Fautes matérielles/s is Hard Faults.

Could you enlighten me about this? Is this a problem with my initial RAM, is this perfectly normal?

Best Answer

Hard faults are caused when information that has been requested (like trying to open up programs for the first time) is not stored in memory. Because it isn't in memory, the computer has to look into your hard drive to find the information. In your screenshot, you have about 8 gigabytes available, and 5 of that is completely free.

Before you upgraded your memory, you might have experienced the hard faults because there was no more free memory, so "Windows was forced to push into the pagefile". You are now experiencing hard faults because you are opening programs for the first time. This is in fact, normal.

Related Question