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 >'' |