Created
September 23, 2024 05:46
-
-
Save danilogco/94cd839c27b62411e9b94c5e0d0216f5 to your computer and use it in GitHub Desktop.
Properly uninstalling xbox gamebar and resolve ms-gaming-overlay-link popup on windows 11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To uninstall it open a powershell as administrator and uninstall it with the following command: | |
Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage | |
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR /f /t REG_DWORD /v "AppCaptureEnabled" /d 0 | |
reg add HKEY_CURRENT_USER\System\GameConfigStore /f /t REG_DWORD /v "GameDVR_Enabled" /d 0 | |
# This disables the game recorder software which seems to still think that the gaming overlay is still present. | |
# Source: https://www.reddit.com/r/WindowsHelp/comments/108ngxr/properly_uninstalling_xbox_gamebar_and_resolve/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment