From b364d5eea794bf174fb81d20a8dd6308238498f6 Mon Sep 17 00:00:00 2001 From: fierelier Date: Tue, 11 Feb 2020 04:09:05 +0100 Subject: [PATCH] added tweak: disable game bar the game bar can decrease performance on certain systems. --- docs/tweaks.md | 1 + tweaks/ten/disable game bar/NTUSER.REG | 6 ++++++ tweaksReversal/ten/disable game bar/NTUSER.REG | 6 ++++++ 3 files changed, 13 insertions(+) create mode 100644 tweaks/ten/disable game bar/NTUSER.REG create mode 100644 tweaksReversal/ten/disable game bar/NTUSER.REG diff --git a/docs/tweaks.md b/docs/tweaks.md index 162c52b..a8ead6a 100644 --- a/docs/tweaks.md +++ b/docs/tweaks.md @@ -14,6 +14,7 @@ i do not guarantee that that all of the reversals are accurate across different | | **name** | **details** | | :---: | --- | --- | +| ⚠️ | [disable game bar](../tweaks/ten/disable game bar) | the game bar can decrease performance on certain systems. | | ✔ | [disable metro app swapping](../tweaks/ten/disable metro app swapping) | metro apps suspend themselves into swapfile.sys, to save memory. this however causes i/o activity. it is better disabled, and to disallow wasteful apps to run in the background entirely. | | ⚠️ | [disable superfetch](../tweaks/longhorn-series/disable superfetch) | superfetch stores frequently accessed data in RAM. this is supposed to speed up read speeds, but in practice, it just causes unnecessary i/o activity, especially on HDDs. slow on HDDs, useless on SSDs as they're fast enough as-is, so this is disabled. | | ✔ | [disable windows defender](../tweaks/longhorn-series/disable windows defender) | windows defender is not that good of anti-virus, and also causes a boatload of i/o activity, especially when a lot is going on. definitely worth disabling. | diff --git a/tweaks/ten/disable game bar/NTUSER.REG b/tweaks/ten/disable game bar/NTUSER.REG new file mode 100644 index 0000000..4314822 --- /dev/null +++ b/tweaks/ten/disable game bar/NTUSER.REG @@ -0,0 +1,6 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\OPUS_TMP\Software\Microsoft\Windows\CurrentVersion\GameDVR] +"AppCaptureEnabled"=dword:00000000 +"HistoricalCaptureEnabled"=dword:00000000 + diff --git a/tweaksReversal/ten/disable game bar/NTUSER.REG b/tweaksReversal/ten/disable game bar/NTUSER.REG new file mode 100644 index 0000000..18ee021 --- /dev/null +++ b/tweaksReversal/ten/disable game bar/NTUSER.REG @@ -0,0 +1,6 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\OPUS_TMP\Software\Microsoft\Windows\CurrentVersion\GameDVR] +"AppCaptureEnabled"=dword:00000001 +"HistoricalCaptureEnabled"=dword:00000001 +