🖥️ Batch (CMD)

Disable Xbox Game Bar Capture (Batch)

Disables background game/app capture via the Xbox Game Bar. Applies the tweak via reg.exe.

By WindowsScripting.com · 551 B
SetDisableGameBar.bat
@echo off
:: ============================================================
:: SetDisableGameBar.bat
::
:: Disable Xbox Game Bar Capture.
:: Disables background game/app capture via the Xbox Game Bar.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v "AppCaptureEnabled" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Xbox Game Bar Capture applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause