Skip to content

Instantly share code, notes, and snippets.

View cco's full-sized avatar

Chris Oswald cco

  • Kulshan Labs
  • Washington
View GitHub Profile
@philippgitpush
philippgitpush / disableXboxGamebar.ps1
Last active October 2, 2025 05:40
Disable / Remove Xbox Gamebar / GamingOverlay Link-Popups on WIndows 11 IoT Enterprise LTSC
# 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 >''