Skip to content

Instantly share code, notes, and snippets.

@Desoroxxx
Last active March 6, 2025 22:53
My Setup

Hardware

Monika (Desktop)

Natsuki (Laptop)

Phone

Peripherals

Software

This part is incomplete and always will be

Windows 11 Customization

Completely Removed XBOX

To remove all the XBOX apps, just run the following command in PowerShell:

Get-ProvisionedAppxPackage -Online | Where-Object { $_.PackageName -match "xbox" } |
ForEach-Object { Remove-ProvisionedAppxPackage -Online -AllUsers -PackageName $_.PackageName }

Then you need to disable the annoying popup:

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

Source: This comment on a gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment