Tuesday, August 26, 2014

memory - Windows drivers hogging 4GB of RAM: How do I find out which driver it is?


As of late, right after boot, my Windows 8.1 (64 Bit) is using 5-6 GB RAM of the available 8 GB. I found a similar question (Windows using too much RAM, how to diagnose resource hog), which unfortunately only partly helps me. The issue I am facing is that I am failing to identify the driver that is hogging the memory.
Here is some information from my system:
What the task manager reports:
Mask Manager Memory Information
Using RamMap to get more detailed information:
RamMap


So RamMap clearly shows that my drivers need more than 4GB of RAM. Using the same diagonstics described in above answer, I used poolmon for further analysis (not using the grouping by via P since my issue does not seem to be the nonpaged RAM):
Poolmon


So what this essentially tells me is that my most memory intense driver is using ~100MB of RAM. So this surely does not add up to 4GB.


Does anyone know what else could cause the high memory consumption?


Answer



VM, RAM Disk, SQL server, or other large RAM storage media are going to be the most likely things that regularly use this much RAM. See this discussion for more information on how these affect 'Driver Locked' memory.


I believe this can also be caused by setting your on-board video memory way too high if you are using an on-board memory card.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...