Windows 10 high memory usage (unknown reason)












67















A few days ago I updated my PC to Windows 10. However, after some use my PC started to slow down until it was impossible to use – it was due to high memory usage. After a restart, everything came back to normal (total usage around 25% of 8GB of RAM). However, during a few hours of usage the memory builds up again to 70%, and if not restarted it further goes to 100%, and later on even freezes. Task manager does not help very much as it does not show all the processes (added screenshots below). Also tried RAMMap but it gives an error: "error refreshing database". I tried Googling this question, yet without much success.



I do not know much about PCs, but maybe some of you know this issue, or could help to find out what is using my RAM.



RAM usage 1



RAM usage 2










share|improve this question

























  • @AR provide a xperf trace. I need to look at the call stacks to see more.

    – magicandre1981
    Aug 5 '15 at 15:23











  • I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

    – hypermails
    Feb 3 at 19:34
















67















A few days ago I updated my PC to Windows 10. However, after some use my PC started to slow down until it was impossible to use – it was due to high memory usage. After a restart, everything came back to normal (total usage around 25% of 8GB of RAM). However, during a few hours of usage the memory builds up again to 70%, and if not restarted it further goes to 100%, and later on even freezes. Task manager does not help very much as it does not show all the processes (added screenshots below). Also tried RAMMap but it gives an error: "error refreshing database". I tried Googling this question, yet without much success.



I do not know much about PCs, but maybe some of you know this issue, or could help to find out what is using my RAM.



RAM usage 1



RAM usage 2










share|improve this question

























  • @AR provide a xperf trace. I need to look at the call stacks to see more.

    – magicandre1981
    Aug 5 '15 at 15:23











  • I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

    – hypermails
    Feb 3 at 19:34














67












67








67


59






A few days ago I updated my PC to Windows 10. However, after some use my PC started to slow down until it was impossible to use – it was due to high memory usage. After a restart, everything came back to normal (total usage around 25% of 8GB of RAM). However, during a few hours of usage the memory builds up again to 70%, and if not restarted it further goes to 100%, and later on even freezes. Task manager does not help very much as it does not show all the processes (added screenshots below). Also tried RAMMap but it gives an error: "error refreshing database". I tried Googling this question, yet without much success.



I do not know much about PCs, but maybe some of you know this issue, or could help to find out what is using my RAM.



RAM usage 1



RAM usage 2










share|improve this question
















A few days ago I updated my PC to Windows 10. However, after some use my PC started to slow down until it was impossible to use – it was due to high memory usage. After a restart, everything came back to normal (total usage around 25% of 8GB of RAM). However, during a few hours of usage the memory builds up again to 70%, and if not restarted it further goes to 100%, and later on even freezes. Task manager does not help very much as it does not show all the processes (added screenshots below). Also tried RAMMap but it gives an error: "error refreshing database". I tried Googling this question, yet without much success.



I do not know much about PCs, but maybe some of you know this issue, or could help to find out what is using my RAM.



RAM usage 1



RAM usage 2







windows memory performance troubleshooting windows-10






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 24 at 23:59









enharmonic

436




436










asked Aug 2 '15 at 6:16









LukasLukas

438154




438154













  • @AR provide a xperf trace. I need to look at the call stacks to see more.

    – magicandre1981
    Aug 5 '15 at 15:23











  • I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

    – hypermails
    Feb 3 at 19:34



















  • @AR provide a xperf trace. I need to look at the call stacks to see more.

    – magicandre1981
    Aug 5 '15 at 15:23











  • I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

    – hypermails
    Feb 3 at 19:34

















@AR provide a xperf trace. I need to look at the call stacks to see more.

– magicandre1981
Aug 5 '15 at 15:23





@AR provide a xperf trace. I need to look at the call stacks to see more.

– magicandre1981
Aug 5 '15 at 15:23













I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

– hypermails
Feb 3 at 19:34





I know this thread is solved - but a good first step is to disable hyper-v. that was the culprit in my case.

– hypermails
Feb 3 at 19:34










3 Answers
3






active

oldest

votes


















108














You have a memory leak caused by a driver. Look at the high value of nonpaged kernel memory. In your case this is over 3.7 GB. You can use poolmon to see which driver is causing the high 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. Run poolmon by going to the folder where WDK is installed, go to Tools (or C:Program Files (x86)Windows Kits10Toolsx64) and click poolmon.exe.



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 do this, open cmd prompt and type cd C:WindowsSystem32drivers. Then type findstr /s __ *.*, where __ is the tag (left-most name in poolmon).
Do this to see which driver uses this tag:



enter image description here



Now, go to the drivers folder (C:WindowsSystem32drivers) and right-click the driver in question (intmsd.sys in the above image example). Click Properties, go to the details tab to find the Product Name. Look for an update for that product.



If the pooltag only shows Windows drivers or is listed in the pooltag.txt ("C:Program Files (x86)Windows Kits10Debuggersx64triagepooltag.txt")



you have use xperf to trace what causes the usage. Install the WPT from the Windows SDK, open a cmd.exe as admin and run this:




xperf -on PROC_THREAD+LOADER+POOL -stackwalk
PoolAlloc+PoolFree+PoolAllocSession+PoolFreeSession -BufferSize 2048
-MaxFile 1024 -FileMode Circular && timeout -1 && xperf -d C:pool.etl




capture 30 -60s of the grow. Open the ETL with WPA.exe, add the Pool graphs to the analysis pane.



Put the pooltag column at first place and add the stack column. Now load the symbols inside WPA.exe and expand the stack of the tag that you saw in poolmon.



enter image description here



Now find other 3rd party drivers which you can see in the stack. Here the Thre tag (Thread) is used by AVKCl.exe from G-Data. Look for driver/program updates to fix it.





The user Hristo Hristov provided a trace with a high FMfn usage during unzipping files:



enter image description here



The tag is used by the driver WiseFs64.sys which is part of the "Wise Folder Hider" program. Removing it fixes the leak.





The user Samuil Dichev provided a trace with a high FMic and Irp usage



enter image description here



enter image description here



The tags are used by the program Razor Cortex.



In the sample of the user chr0n0ss the FMic and Irp usage is caused by F-Secure Antivirus Suite:



enter image description here



Removing it and using Windows Defender fixed the issue for him.









share|improve this answer





















  • 4





    wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

    – Lukas
    Aug 2 '15 at 7:36








  • 1





    This reminds me of a Mark Russinovich blog post.

    – Sun
    Aug 5 '15 at 16:18






  • 1





    I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

    – Travis Bemrose
    Aug 27 '15 at 19:44






  • 1





    findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

    – Loenix
    Dec 7 '15 at 16:44






  • 1





    NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

    – Suraj Jain
    Jul 22 '17 at 4:25





















26














this guy might have a Killer Networking (previously Bigfoot networking) brand network card.



Was going crazy trying to figure out why I had a massive memory leak and even did a completely clean install and immediately after installing I had a memory leak. Of course I installed my network drivers and video card drivers but that was it.



I searched Google... Found this thread saying it was his network driver then googled "killer memory leak" and saw hits for that and found it was the killer app itself and not just in windows 10.



Now I'm golden...
So if anyone else has this issue and they have one of the many gaming boards or laptops that have a killer NIC you can probably just disable the killer app from starting. But what I did was completely uninstall the ASROCK provided driver and then installed the latest driver only package from the official killer networking site. It's the smaller ~30mb download. If your download is closer to or more than 100mb then you got the wrong one.



You'll loose everything that makes the killer stand out (it's QoS software) but that's what a good router is for in the first place... Especially since the killer app only handles the QoS of applications running on your PC and does nothing for your network as a whole.






share|improve this answer



















  • 1





    Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

    – Ramhound
    Oct 18 '15 at 0:38








  • 2





    thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

    – Buju
    Dec 13 '15 at 14:58






  • 1





    You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

    – nikoskip
    Dec 27 '15 at 20:13











  • Than you so much!!!

    – srchulo
    Oct 7 '16 at 5:55



















1














The accepted answer by magicandre1981 is the correct answer to this problem, if the RAM usage continues to climb to 100% then there's most likely a memory leak.



However, if you've come to this page because Windows 10's memory usage is high but remaining steady (like in the 60%-90% range), you probably don't have a problem. Windows 10 uses RAM more effectively than past versions. This is because unused RAM is wasted RAM.



Modern operating systems have long swapped infrequently used memory data to a pagefile on the hard drive in order to free up RAM for more frequently needed memory data. (My Win 10 system has 8GB RAM and a 12GB pagefile.) However, it is slow to retrieve this data back from the drive, and Windows 10 will compress infrequently accessed memory and store it in the system process (in the RAM). It's faster to uncompress this data than it is to retrieve it from the hard drive (even an SSD). Just because your RAM is mostly full, does not mean you won't be able to run more things, if more RAM is needed then Win 10 will move some of this compressed memory to the pagefile to free up RAM for new applications.



If you constantly find your system process is using more than 1GB RAM (like I do) than you probably have too many browser tabs open (like I do). An extension like OneTab can help.






share|improve this answer


























  • no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

    – magicandre1981
    Jun 6 '16 at 15:25











  • @magicandre1981 What are you saying 'no' to? I don't see a disagreement.

    – Travis Bemrose
    Jun 6 '16 at 18:28






  • 1





    I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

    – user2924019
    Dec 8 '17 at 13:21










protected by Community Aug 20 '15 at 12:34



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?














3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









108














You have a memory leak caused by a driver. Look at the high value of nonpaged kernel memory. In your case this is over 3.7 GB. You can use poolmon to see which driver is causing the high 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. Run poolmon by going to the folder where WDK is installed, go to Tools (or C:Program Files (x86)Windows Kits10Toolsx64) and click poolmon.exe.



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 do this, open cmd prompt and type cd C:WindowsSystem32drivers. Then type findstr /s __ *.*, where __ is the tag (left-most name in poolmon).
Do this to see which driver uses this tag:



enter image description here



Now, go to the drivers folder (C:WindowsSystem32drivers) and right-click the driver in question (intmsd.sys in the above image example). Click Properties, go to the details tab to find the Product Name. Look for an update for that product.



If the pooltag only shows Windows drivers or is listed in the pooltag.txt ("C:Program Files (x86)Windows Kits10Debuggersx64triagepooltag.txt")



you have use xperf to trace what causes the usage. Install the WPT from the Windows SDK, open a cmd.exe as admin and run this:




xperf -on PROC_THREAD+LOADER+POOL -stackwalk
PoolAlloc+PoolFree+PoolAllocSession+PoolFreeSession -BufferSize 2048
-MaxFile 1024 -FileMode Circular && timeout -1 && xperf -d C:pool.etl




capture 30 -60s of the grow. Open the ETL with WPA.exe, add the Pool graphs to the analysis pane.



Put the pooltag column at first place and add the stack column. Now load the symbols inside WPA.exe and expand the stack of the tag that you saw in poolmon.



enter image description here



Now find other 3rd party drivers which you can see in the stack. Here the Thre tag (Thread) is used by AVKCl.exe from G-Data. Look for driver/program updates to fix it.





The user Hristo Hristov provided a trace with a high FMfn usage during unzipping files:



enter image description here



The tag is used by the driver WiseFs64.sys which is part of the "Wise Folder Hider" program. Removing it fixes the leak.





The user Samuil Dichev provided a trace with a high FMic and Irp usage



enter image description here



enter image description here



The tags are used by the program Razor Cortex.



In the sample of the user chr0n0ss the FMic and Irp usage is caused by F-Secure Antivirus Suite:



enter image description here



Removing it and using Windows Defender fixed the issue for him.









share|improve this answer





















  • 4





    wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

    – Lukas
    Aug 2 '15 at 7:36








  • 1





    This reminds me of a Mark Russinovich blog post.

    – Sun
    Aug 5 '15 at 16:18






  • 1





    I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

    – Travis Bemrose
    Aug 27 '15 at 19:44






  • 1





    findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

    – Loenix
    Dec 7 '15 at 16:44






  • 1





    NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

    – Suraj Jain
    Jul 22 '17 at 4:25


















108














You have a memory leak caused by a driver. Look at the high value of nonpaged kernel memory. In your case this is over 3.7 GB. You can use poolmon to see which driver is causing the high 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. Run poolmon by going to the folder where WDK is installed, go to Tools (or C:Program Files (x86)Windows Kits10Toolsx64) and click poolmon.exe.



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 do this, open cmd prompt and type cd C:WindowsSystem32drivers. Then type findstr /s __ *.*, where __ is the tag (left-most name in poolmon).
Do this to see which driver uses this tag:



enter image description here



Now, go to the drivers folder (C:WindowsSystem32drivers) and right-click the driver in question (intmsd.sys in the above image example). Click Properties, go to the details tab to find the Product Name. Look for an update for that product.



If the pooltag only shows Windows drivers or is listed in the pooltag.txt ("C:Program Files (x86)Windows Kits10Debuggersx64triagepooltag.txt")



you have use xperf to trace what causes the usage. Install the WPT from the Windows SDK, open a cmd.exe as admin and run this:




xperf -on PROC_THREAD+LOADER+POOL -stackwalk
PoolAlloc+PoolFree+PoolAllocSession+PoolFreeSession -BufferSize 2048
-MaxFile 1024 -FileMode Circular && timeout -1 && xperf -d C:pool.etl




capture 30 -60s of the grow. Open the ETL with WPA.exe, add the Pool graphs to the analysis pane.



Put the pooltag column at first place and add the stack column. Now load the symbols inside WPA.exe and expand the stack of the tag that you saw in poolmon.



enter image description here



Now find other 3rd party drivers which you can see in the stack. Here the Thre tag (Thread) is used by AVKCl.exe from G-Data. Look for driver/program updates to fix it.





The user Hristo Hristov provided a trace with a high FMfn usage during unzipping files:



enter image description here



The tag is used by the driver WiseFs64.sys which is part of the "Wise Folder Hider" program. Removing it fixes the leak.





The user Samuil Dichev provided a trace with a high FMic and Irp usage



enter image description here



enter image description here



The tags are used by the program Razor Cortex.



In the sample of the user chr0n0ss the FMic and Irp usage is caused by F-Secure Antivirus Suite:



enter image description here



Removing it and using Windows Defender fixed the issue for him.









share|improve this answer





















  • 4





    wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

    – Lukas
    Aug 2 '15 at 7:36








  • 1





    This reminds me of a Mark Russinovich blog post.

    – Sun
    Aug 5 '15 at 16:18






  • 1





    I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

    – Travis Bemrose
    Aug 27 '15 at 19:44






  • 1





    findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

    – Loenix
    Dec 7 '15 at 16:44






  • 1





    NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

    – Suraj Jain
    Jul 22 '17 at 4:25
















108












108








108







You have a memory leak caused by a driver. Look at the high value of nonpaged kernel memory. In your case this is over 3.7 GB. You can use poolmon to see which driver is causing the high 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. Run poolmon by going to the folder where WDK is installed, go to Tools (or C:Program Files (x86)Windows Kits10Toolsx64) and click poolmon.exe.



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 do this, open cmd prompt and type cd C:WindowsSystem32drivers. Then type findstr /s __ *.*, where __ is the tag (left-most name in poolmon).
Do this to see which driver uses this tag:



enter image description here



Now, go to the drivers folder (C:WindowsSystem32drivers) and right-click the driver in question (intmsd.sys in the above image example). Click Properties, go to the details tab to find the Product Name. Look for an update for that product.



If the pooltag only shows Windows drivers or is listed in the pooltag.txt ("C:Program Files (x86)Windows Kits10Debuggersx64triagepooltag.txt")



you have use xperf to trace what causes the usage. Install the WPT from the Windows SDK, open a cmd.exe as admin and run this:




xperf -on PROC_THREAD+LOADER+POOL -stackwalk
PoolAlloc+PoolFree+PoolAllocSession+PoolFreeSession -BufferSize 2048
-MaxFile 1024 -FileMode Circular && timeout -1 && xperf -d C:pool.etl




capture 30 -60s of the grow. Open the ETL with WPA.exe, add the Pool graphs to the analysis pane.



Put the pooltag column at first place and add the stack column. Now load the symbols inside WPA.exe and expand the stack of the tag that you saw in poolmon.



enter image description here



Now find other 3rd party drivers which you can see in the stack. Here the Thre tag (Thread) is used by AVKCl.exe from G-Data. Look for driver/program updates to fix it.





The user Hristo Hristov provided a trace with a high FMfn usage during unzipping files:



enter image description here



The tag is used by the driver WiseFs64.sys which is part of the "Wise Folder Hider" program. Removing it fixes the leak.





The user Samuil Dichev provided a trace with a high FMic and Irp usage



enter image description here



enter image description here



The tags are used by the program Razor Cortex.



In the sample of the user chr0n0ss the FMic and Irp usage is caused by F-Secure Antivirus Suite:



enter image description here



Removing it and using Windows Defender fixed the issue for him.









share|improve this answer















You have a memory leak caused by a driver. Look at the high value of nonpaged kernel memory. In your case this is over 3.7 GB. You can use poolmon to see which driver is causing the high 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. Run poolmon by going to the folder where WDK is installed, go to Tools (or C:Program Files (x86)Windows Kits10Toolsx64) and click poolmon.exe.



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 do this, open cmd prompt and type cd C:WindowsSystem32drivers. Then type findstr /s __ *.*, where __ is the tag (left-most name in poolmon).
Do this to see which driver uses this tag:



enter image description here



Now, go to the drivers folder (C:WindowsSystem32drivers) and right-click the driver in question (intmsd.sys in the above image example). Click Properties, go to the details tab to find the Product Name. Look for an update for that product.



If the pooltag only shows Windows drivers or is listed in the pooltag.txt ("C:Program Files (x86)Windows Kits10Debuggersx64triagepooltag.txt")



you have use xperf to trace what causes the usage. Install the WPT from the Windows SDK, open a cmd.exe as admin and run this:




xperf -on PROC_THREAD+LOADER+POOL -stackwalk
PoolAlloc+PoolFree+PoolAllocSession+PoolFreeSession -BufferSize 2048
-MaxFile 1024 -FileMode Circular && timeout -1 && xperf -d C:pool.etl




capture 30 -60s of the grow. Open the ETL with WPA.exe, add the Pool graphs to the analysis pane.



Put the pooltag column at first place and add the stack column. Now load the symbols inside WPA.exe and expand the stack of the tag that you saw in poolmon.



enter image description here



Now find other 3rd party drivers which you can see in the stack. Here the Thre tag (Thread) is used by AVKCl.exe from G-Data. Look for driver/program updates to fix it.





The user Hristo Hristov provided a trace with a high FMfn usage during unzipping files:



enter image description here



The tag is used by the driver WiseFs64.sys which is part of the "Wise Folder Hider" program. Removing it fixes the leak.





The user Samuil Dichev provided a trace with a high FMic and Irp usage



enter image description here



enter image description here



The tags are used by the program Razor Cortex.



In the sample of the user chr0n0ss the FMic and Irp usage is caused by F-Secure Antivirus Suite:



enter image description here



Removing it and using Windows Defender fixed the issue for him.










share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 16 '18 at 16:18

























answered Aug 2 '15 at 6:28









magicandre1981magicandre1981

82.1k20126204




82.1k20126204








  • 4





    wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

    – Lukas
    Aug 2 '15 at 7:36








  • 1





    This reminds me of a Mark Russinovich blog post.

    – Sun
    Aug 5 '15 at 16:18






  • 1





    I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

    – Travis Bemrose
    Aug 27 '15 at 19:44






  • 1





    findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

    – Loenix
    Dec 7 '15 at 16:44






  • 1





    NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

    – Suraj Jain
    Jul 22 '17 at 4:25
















  • 4





    wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

    – Lukas
    Aug 2 '15 at 7:36








  • 1





    This reminds me of a Mark Russinovich blog post.

    – Sun
    Aug 5 '15 at 16:18






  • 1





    I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

    – Travis Bemrose
    Aug 27 '15 at 19:44






  • 1





    findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

    – Loenix
    Dec 7 '15 at 16:44






  • 1





    NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

    – Suraj Jain
    Jul 22 '17 at 4:25










4




4





wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

– Lukas
Aug 2 '15 at 7:36







wow, thanks a lot for such a fast answer to the question that i thought i will never find one :) it seems that network drivers were causing the problem and after updating memory usage seems OK. Thanks again! :)

– Lukas
Aug 2 '15 at 7:36






1




1





This reminds me of a Mark Russinovich blog post.

– Sun
Aug 5 '15 at 16:18





This reminds me of a Mark Russinovich blog post.

– Sun
Aug 5 '15 at 16:18




1




1





I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

– Travis Bemrose
Aug 27 '15 at 19:44





I think the WDK download link you provide is for Win 8. The version for Win 10 is here: msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx

– Travis Bemrose
Aug 27 '15 at 19:44




1




1





findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

– Loenix
Dec 7 '15 at 16:44





findstr command does not return anything that could help me pasteboard.co/2HmQZYbN.png

– Loenix
Dec 7 '15 at 16:44




1




1





NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

– Suraj Jain
Jul 22 '17 at 4:25







NDbf Was high, then I found it was sumsungrapiddskfltr or something, I turned it off, it works good now.

– Suraj Jain
Jul 22 '17 at 4:25















26














this guy might have a Killer Networking (previously Bigfoot networking) brand network card.



Was going crazy trying to figure out why I had a massive memory leak and even did a completely clean install and immediately after installing I had a memory leak. Of course I installed my network drivers and video card drivers but that was it.



I searched Google... Found this thread saying it was his network driver then googled "killer memory leak" and saw hits for that and found it was the killer app itself and not just in windows 10.



Now I'm golden...
So if anyone else has this issue and they have one of the many gaming boards or laptops that have a killer NIC you can probably just disable the killer app from starting. But what I did was completely uninstall the ASROCK provided driver and then installed the latest driver only package from the official killer networking site. It's the smaller ~30mb download. If your download is closer to or more than 100mb then you got the wrong one.



You'll loose everything that makes the killer stand out (it's QoS software) but that's what a good router is for in the first place... Especially since the killer app only handles the QoS of applications running on your PC and does nothing for your network as a whole.






share|improve this answer



















  • 1





    Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

    – Ramhound
    Oct 18 '15 at 0:38








  • 2





    thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

    – Buju
    Dec 13 '15 at 14:58






  • 1





    You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

    – nikoskip
    Dec 27 '15 at 20:13











  • Than you so much!!!

    – srchulo
    Oct 7 '16 at 5:55
















26














this guy might have a Killer Networking (previously Bigfoot networking) brand network card.



Was going crazy trying to figure out why I had a massive memory leak and even did a completely clean install and immediately after installing I had a memory leak. Of course I installed my network drivers and video card drivers but that was it.



I searched Google... Found this thread saying it was his network driver then googled "killer memory leak" and saw hits for that and found it was the killer app itself and not just in windows 10.



Now I'm golden...
So if anyone else has this issue and they have one of the many gaming boards or laptops that have a killer NIC you can probably just disable the killer app from starting. But what I did was completely uninstall the ASROCK provided driver and then installed the latest driver only package from the official killer networking site. It's the smaller ~30mb download. If your download is closer to or more than 100mb then you got the wrong one.



You'll loose everything that makes the killer stand out (it's QoS software) but that's what a good router is for in the first place... Especially since the killer app only handles the QoS of applications running on your PC and does nothing for your network as a whole.






share|improve this answer



















  • 1





    Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

    – Ramhound
    Oct 18 '15 at 0:38








  • 2





    thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

    – Buju
    Dec 13 '15 at 14:58






  • 1





    You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

    – nikoskip
    Dec 27 '15 at 20:13











  • Than you so much!!!

    – srchulo
    Oct 7 '16 at 5:55














26












26








26







this guy might have a Killer Networking (previously Bigfoot networking) brand network card.



Was going crazy trying to figure out why I had a massive memory leak and even did a completely clean install and immediately after installing I had a memory leak. Of course I installed my network drivers and video card drivers but that was it.



I searched Google... Found this thread saying it was his network driver then googled "killer memory leak" and saw hits for that and found it was the killer app itself and not just in windows 10.



Now I'm golden...
So if anyone else has this issue and they have one of the many gaming boards or laptops that have a killer NIC you can probably just disable the killer app from starting. But what I did was completely uninstall the ASROCK provided driver and then installed the latest driver only package from the official killer networking site. It's the smaller ~30mb download. If your download is closer to or more than 100mb then you got the wrong one.



You'll loose everything that makes the killer stand out (it's QoS software) but that's what a good router is for in the first place... Especially since the killer app only handles the QoS of applications running on your PC and does nothing for your network as a whole.






share|improve this answer













this guy might have a Killer Networking (previously Bigfoot networking) brand network card.



Was going crazy trying to figure out why I had a massive memory leak and even did a completely clean install and immediately after installing I had a memory leak. Of course I installed my network drivers and video card drivers but that was it.



I searched Google... Found this thread saying it was his network driver then googled "killer memory leak" and saw hits for that and found it was the killer app itself and not just in windows 10.



Now I'm golden...
So if anyone else has this issue and they have one of the many gaming boards or laptops that have a killer NIC you can probably just disable the killer app from starting. But what I did was completely uninstall the ASROCK provided driver and then installed the latest driver only package from the official killer networking site. It's the smaller ~30mb download. If your download is closer to or more than 100mb then you got the wrong one.



You'll loose everything that makes the killer stand out (it's QoS software) but that's what a good router is for in the first place... Especially since the killer app only handles the QoS of applications running on your PC and does nothing for your network as a whole.







share|improve this answer












share|improve this answer



share|improve this answer










answered Aug 15 '15 at 11:50









user193631user193631

27722




27722








  • 1





    Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

    – Ramhound
    Oct 18 '15 at 0:38








  • 2





    thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

    – Buju
    Dec 13 '15 at 14:58






  • 1





    You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

    – nikoskip
    Dec 27 '15 at 20:13











  • Than you so much!!!

    – srchulo
    Oct 7 '16 at 5:55














  • 1





    Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

    – Ramhound
    Oct 18 '15 at 0:38








  • 2





    thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

    – Buju
    Dec 13 '15 at 14:58






  • 1





    You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

    – nikoskip
    Dec 27 '15 at 20:13











  • Than you so much!!!

    – srchulo
    Oct 7 '16 at 5:55








1




1





Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

– Ramhound
Oct 18 '15 at 0:38







Would have been better to confirm they did. Once they confirmed it then submit an answer. Even if you did that this answer does not explain how to solve the problem.

– Ramhound
Oct 18 '15 at 0:38






2




2





thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

– Buju
Dec 13 '15 at 14:58





thanks a lot for you answer. it saved me lots of time. I had the same problem. After reading your answer I just uninstalled Killer app and then only installed the network drivers. Now my windows 10 is working perfectly.

– Buju
Dec 13 '15 at 14:58




1




1





You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

– nikoskip
Dec 27 '15 at 20:13





You saved me, thanks!. I uninstalled the whole Killer suite, and only installed the drivers. Now at startup, my ram usage is 25% (2GB) vs 50%~60% before.

– nikoskip
Dec 27 '15 at 20:13













Than you so much!!!

– srchulo
Oct 7 '16 at 5:55





Than you so much!!!

– srchulo
Oct 7 '16 at 5:55











1














The accepted answer by magicandre1981 is the correct answer to this problem, if the RAM usage continues to climb to 100% then there's most likely a memory leak.



However, if you've come to this page because Windows 10's memory usage is high but remaining steady (like in the 60%-90% range), you probably don't have a problem. Windows 10 uses RAM more effectively than past versions. This is because unused RAM is wasted RAM.



Modern operating systems have long swapped infrequently used memory data to a pagefile on the hard drive in order to free up RAM for more frequently needed memory data. (My Win 10 system has 8GB RAM and a 12GB pagefile.) However, it is slow to retrieve this data back from the drive, and Windows 10 will compress infrequently accessed memory and store it in the system process (in the RAM). It's faster to uncompress this data than it is to retrieve it from the hard drive (even an SSD). Just because your RAM is mostly full, does not mean you won't be able to run more things, if more RAM is needed then Win 10 will move some of this compressed memory to the pagefile to free up RAM for new applications.



If you constantly find your system process is using more than 1GB RAM (like I do) than you probably have too many browser tabs open (like I do). An extension like OneTab can help.






share|improve this answer


























  • no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

    – magicandre1981
    Jun 6 '16 at 15:25











  • @magicandre1981 What are you saying 'no' to? I don't see a disagreement.

    – Travis Bemrose
    Jun 6 '16 at 18:28






  • 1





    I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

    – user2924019
    Dec 8 '17 at 13:21
















1














The accepted answer by magicandre1981 is the correct answer to this problem, if the RAM usage continues to climb to 100% then there's most likely a memory leak.



However, if you've come to this page because Windows 10's memory usage is high but remaining steady (like in the 60%-90% range), you probably don't have a problem. Windows 10 uses RAM more effectively than past versions. This is because unused RAM is wasted RAM.



Modern operating systems have long swapped infrequently used memory data to a pagefile on the hard drive in order to free up RAM for more frequently needed memory data. (My Win 10 system has 8GB RAM and a 12GB pagefile.) However, it is slow to retrieve this data back from the drive, and Windows 10 will compress infrequently accessed memory and store it in the system process (in the RAM). It's faster to uncompress this data than it is to retrieve it from the hard drive (even an SSD). Just because your RAM is mostly full, does not mean you won't be able to run more things, if more RAM is needed then Win 10 will move some of this compressed memory to the pagefile to free up RAM for new applications.



If you constantly find your system process is using more than 1GB RAM (like I do) than you probably have too many browser tabs open (like I do). An extension like OneTab can help.






share|improve this answer


























  • no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

    – magicandre1981
    Jun 6 '16 at 15:25











  • @magicandre1981 What are you saying 'no' to? I don't see a disagreement.

    – Travis Bemrose
    Jun 6 '16 at 18:28






  • 1





    I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

    – user2924019
    Dec 8 '17 at 13:21














1












1








1







The accepted answer by magicandre1981 is the correct answer to this problem, if the RAM usage continues to climb to 100% then there's most likely a memory leak.



However, if you've come to this page because Windows 10's memory usage is high but remaining steady (like in the 60%-90% range), you probably don't have a problem. Windows 10 uses RAM more effectively than past versions. This is because unused RAM is wasted RAM.



Modern operating systems have long swapped infrequently used memory data to a pagefile on the hard drive in order to free up RAM for more frequently needed memory data. (My Win 10 system has 8GB RAM and a 12GB pagefile.) However, it is slow to retrieve this data back from the drive, and Windows 10 will compress infrequently accessed memory and store it in the system process (in the RAM). It's faster to uncompress this data than it is to retrieve it from the hard drive (even an SSD). Just because your RAM is mostly full, does not mean you won't be able to run more things, if more RAM is needed then Win 10 will move some of this compressed memory to the pagefile to free up RAM for new applications.



If you constantly find your system process is using more than 1GB RAM (like I do) than you probably have too many browser tabs open (like I do). An extension like OneTab can help.






share|improve this answer















The accepted answer by magicandre1981 is the correct answer to this problem, if the RAM usage continues to climb to 100% then there's most likely a memory leak.



However, if you've come to this page because Windows 10's memory usage is high but remaining steady (like in the 60%-90% range), you probably don't have a problem. Windows 10 uses RAM more effectively than past versions. This is because unused RAM is wasted RAM.



Modern operating systems have long swapped infrequently used memory data to a pagefile on the hard drive in order to free up RAM for more frequently needed memory data. (My Win 10 system has 8GB RAM and a 12GB pagefile.) However, it is slow to retrieve this data back from the drive, and Windows 10 will compress infrequently accessed memory and store it in the system process (in the RAM). It's faster to uncompress this data than it is to retrieve it from the hard drive (even an SSD). Just because your RAM is mostly full, does not mean you won't be able to run more things, if more RAM is needed then Win 10 will move some of this compressed memory to the pagefile to free up RAM for new applications.



If you constantly find your system process is using more than 1GB RAM (like I do) than you probably have too many browser tabs open (like I do). An extension like OneTab can help.







share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 19 '16 at 3:55

























answered May 10 '16 at 15:38









Travis BemroseTravis Bemrose

18710




18710













  • no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

    – magicandre1981
    Jun 6 '16 at 15:25











  • @magicandre1981 What are you saying 'no' to? I don't see a disagreement.

    – Travis Bemrose
    Jun 6 '16 at 18:28






  • 1





    I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

    – user2924019
    Dec 8 '17 at 13:21



















  • no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

    – magicandre1981
    Jun 6 '16 at 15:25











  • @magicandre1981 What are you saying 'no' to? I don't see a disagreement.

    – Travis Bemrose
    Jun 6 '16 at 18:28






  • 1





    I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

    – user2924019
    Dec 8 '17 at 13:21

















no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

– magicandre1981
Jun 6 '16 at 15:25





no, the cache is shown as standby/Cached in Taskmgr. The Win10 Taskmgr compression shows as Working Set usage in SYSTEM process. I already explained this here: superuser.com/a/952142/174557

– magicandre1981
Jun 6 '16 at 15:25













@magicandre1981 What are you saying 'no' to? I don't see a disagreement.

– Travis Bemrose
Jun 6 '16 at 18:28





@magicandre1981 What are you saying 'no' to? I don't see a disagreement.

– Travis Bemrose
Jun 6 '16 at 18:28




1




1





I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

– user2924019
Dec 8 '17 at 13:21





I've found that Windows 10 still aims to keep memory usage below 60%, and any more than this it starts to page. We have alerts on 1000+ devices for when memory usage goes above 80% and the PC's really do start to slow down. Windows 10 may manage it better, but it's also better to keep a large portion of memory free, ready for other processes to use when needed, otherwise, it would have to write back to the disk before freeing up memory which is slow.

– user2924019
Dec 8 '17 at 13:21





protected by Community Aug 20 '15 at 12:34



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?



Popular posts from this blog

Список кардиналов, возведённых папой римским Каликстом III

Deduzione

Mysql.sock missing - “Can't connect to local MySQL server through socket”