โ All Tweaks
UI & Bloat Removal
Disable Xbox Game Bar
Disables the Xbox Game Bar overlay and background recording.
Benefit
Frees resources and removes gaming overlay
Impact
highCommands (1)
$entries = @(; @{Path='HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR'; Name='AppCaptureEnabled'; Value=0; Type='DWord'; Label='Xbox Game Bar capture disabled'},@{Path='HKCU:\System\GameConfigStore'; Name='GameDVR_Enabled'; Value=0; Type='DWord'; Label='GameDVR disabled'},@{Path='HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR'; Name='AllowGameDVR'; Value=0; Type='DWord'; Label='GameDVR policy disabled'}; ); foreach ($e in $entries) { try { if (-not (Test-Path $e.Path)) { New-Item -Path $e.Path -Force -ErrorAction Stop | Out-Null } New-ItemProperty -Path $e.Path -Name $e.Name -PropertyType $e.Type -Value $e.Value -Force -ErrorAction Stop | Out-Null; Write-Host "[OK] $($e.Label)" } catch [System.UnauthorizedAccessException] { Write-Host "[INFO] $($e.Label) - key locked by system (feature likely already removed)" } catch { Write-Host "[ERR] $($e.Label) - $($_.Exception.Message)" } }Warnings
- Disables Game Bar shortcuts (Win+G)