1.Open PowerShell as Administrator: Required to elevate permissions for system app removal. Right-click the Start button (or press Win + X ). Select Terminal (Admin) or Windows PowerShell (Admin) . Click Yes on the User Account Control (UAC) prompt. 2.Uninstall Gaming Services and purge registry entries: Clears corrupted service keys that cause reinstall failures. Execute the following command to remove the Gaming Services package across all users: PowerShell Get-AppxPackage *gamingservices* -allusers | Remove-AppxPackage -allusers
Next, execute these two commands to wipe any orphaned registry keys left behind by failed updates:
PowerShell
Remove-Item -Path "HKLM:\System\CurrentControlSet\Services\GamingServices" -Recurse -ErrorAction SilentlyContinue Remove-Item -Path "HKLM:\System\CurrentControlSet\Services\GamingServicesNet" -Recurse -ErrorAction SilentlyContinue
3.Restart your PC: Crucial for cle...