Skip to content

Game Mode

config/tweaks.json
1765  "WPFToggleGameMode": {
1766    "Content": "Game Mode",
1767    "Description": "If enabled, Windows prioritizes gaming performance by allocating system resources. Disable for audio/video production to prevent interference.",
1768    "category": "Customize Preferences",
1769    "panel": "2",
1770    "Type": "Toggle",
1771    "registry": [
1772      {
1773        "Path": "HKCU:\\Software\\Microsoft\\GameBar",
1774        "Name": "AllowAutoGameMode",
1775        "Value": "1",
1776        "Type": "DWord",
1777        "OriginalValue": "0",
1778        "DefaultState": "true"
1779      },
1780      {
1781        "Path": "HKCU:\\Software\\Microsoft\\GameBar",
1782        "Name": "AutoGameModeEnabled",
1783        "Value": "1",
1784        "Type": "DWord",
1785        "OriginalValue": "0",
1786        "DefaultState": "true"
1787      }
1788    ],

Registry Changes

Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.

You can find information about the registry on Wikipedia and Microsoft’s Website.