Last active
December 7, 2025 10:27
-
-
Save philippgitpush/011144907c35013f6fc8151ad5ef892c to your computer and use it in GitHub Desktop.
Disable / Remove Xbox Gamebar / GamingOverlay Link-Popups on WIndows 11 IoT Enterprise LTSC
This file contains hidden or 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
| # Remove Xbox App | |
| Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage | |
| # Disable ms-gamingoverlay links | |
| 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 | |
| # Disable ms-gamebar links | |
| reg add HKCR\ms-gamebar /f /ve /d URL:ms-gamebar 2>&1 >'' | |
| reg add HKCR\ms-gamebar /f /v "URL Protocol" /d "" 2>&1 >'' | |
| reg add HKCR\ms-gamebar /f /v "NoOpenWith" /d "" 2>&1 >'' | |
| reg add HKCR\ms-gamebar\shell\open\command /f /ve /d "\`"$env:SystemRoot\System32\systray.exe\`"" 2>&1 >'' | |
| reg add HKCR\ms-gamebarservices /f /ve /d URL:ms-gamebarservices 2>&1 >'' | |
| reg add HKCR\ms-gamebarservices /f /v "URL Protocol" /d "" 2>&1 >'' | |
| reg add HKCR\ms-gamebarservices /f /v "NoOpenWith" /d "" 2>&1 >'' | |
| reg add HKCR\ms-gamebarservices\shell\open\command /f /ve /d "\`"$env:SystemRoot\System32\systray.exe\`"" 2>&1 >'' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for saving me, I was trying to fix it for hours