Windows – Why is the computer using so much ram

memorywindows 7

I have 16gb of ram installed in my computer, and nearly 70% of it is used at all times. Looking at the processes in task manager the memory being used with everything in there doesn't even add up to 2gb. I have RAPID mode enabled on my ssd which may be using 2gb at most so I would understand that. I am thinking there might be a memory leak somewhere, but I don't really know how I would be able to tell. My performance and process list is below:

http://gyazo.com/140d660f9e50e70659fafc1861ac4c6c

http://gyazo.com/40207af5dfd8db334105b3d1cf5aa95f

Here is a picture of RAMMap:

enter image description here

Best Answer

The high memory usage comes from the large page table:

enter image description here

I've explained here, how to trace this.

also the nonpaged pool is too high. You can use poolmon to see which driver is causing the high pool usage.

Install the Windows WDK, run poolmon, sort it via P after pool type so that non paged is on top and via B after bytes to see the tag which uses most memory.

Now look which pooltag uses most memory as shown here:

enter image description here

Now open a cmd prompt and run the findstr command to see which driver uses this tag:

enter image description here

Now look at the file properties, find the driver version and look for an update.

Related Question