From 15175bb164584a8d35fac3c712019e2fc95efffd Mon Sep 17 00:00:00 2001 From: 4oo4 <4oo4@users.noreply.github.com> Date: Sat, 27 Jul 2019 11:20:25 -0500 Subject: [PATCH] Disable Windows Network Data Usage Monitor This service can still cause huge memory leaks Windows 10, and disabling it seems to help quite a bit with performance. NDU service is probably not needed for most desktops/laptops that aren't using a mobile data plan. https://bluebluewave.wordpress.com/2014/02/27/memory-leak-in-windows-8-1-with-killer-e2200-and-windows-network-data-usage-monitoring/ --- scripts/disable-services.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/disable-services.ps1 b/scripts/disable-services.ps1 index 42be387..a69f8e9 100644 --- a/scripts/disable-services.ps1 +++ b/scripts/disable-services.ps1 @@ -23,7 +23,7 @@ $services = @( "XblAuthManager" # Xbox Live Auth Manager "XblGameSave" # Xbox Live Game Save Service "XboxNetApiSvc" # Xbox Live Networking Service - + "ndu" # Windows Network Data Usage Monitor # Services which cannot be disabled #"WdNisSvc" )