From 52cebd679ff8513944fa74b940b4bc679f239420 Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Fri, 29 Apr 2022 11:26:16 -0500 Subject: [PATCH 1/2] Fix Xbox Live Bug - Disabling Xbox Live services and removing Xbox Identity Provider breaks Xbox Live games like Minecraft UWP - Fixed by commenting out the Services and App in $services and $Bloatware --- win10debloat.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/win10debloat.ps1 b/win10debloat.ps1 index 741c1fc3..21163343 100644 --- a/win10debloat.ps1 +++ b/win10debloat.ps1 @@ -1104,9 +1104,9 @@ Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies "WMPNetworkSvc" # Windows Media Player Network Sharing Service #"wscsvc" # Windows Security Center Service "WSearch" # Windows Search - "XblAuthManager" # Xbox Live Auth Manager - "XblGameSave" # Xbox Live Game Save Service - "XboxNetApiSvc" # Xbox Live Networking Service + #"XblAuthManager" # Xbox Live Auth Manager (Disabling Breaks Xbox Live Games) + #"XblGameSave" # Xbox Live Game Save Service (Disabling Breaks Xbox Live Games) + #"XboxNetApiSvc" # Xbox Live Networking Service (Disabling Breaks Xbox Live Games) "XboxGipSvc" #Disables Xbox Accessory Management Service "ndu" # Windows Network Data Usage Monitor "WerSvc" #disables windows error reporting @@ -1482,7 +1482,7 @@ $Bloatware = @( "Microsoft.XboxGameCallableUI" "Microsoft.XboxSpeechToTextOverlay" "Microsoft.MixedReality.Portal" - "Microsoft.XboxIdentityProvider" + #"Microsoft.XboxIdentityProvider" # Breaks Xbox Live in games like Minecraft UWP "Microsoft.ZuneMusic" "Microsoft.ZuneVideo" "Microsoft.YourPhone" From 45bc584ae59d2655ab18c8cc4d00c194ae061fd7 Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Fri, 29 Apr 2022 11:30:55 -0500 Subject: [PATCH 2/2] Revert service changes I noticed that the services are set to manual and not disabled, so it shouldn't cause an issue there --- win10debloat.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/win10debloat.ps1 b/win10debloat.ps1 index 21163343..d52d5619 100644 --- a/win10debloat.ps1 +++ b/win10debloat.ps1 @@ -1104,9 +1104,9 @@ Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies "WMPNetworkSvc" # Windows Media Player Network Sharing Service #"wscsvc" # Windows Security Center Service "WSearch" # Windows Search - #"XblAuthManager" # Xbox Live Auth Manager (Disabling Breaks Xbox Live Games) - #"XblGameSave" # Xbox Live Game Save Service (Disabling Breaks Xbox Live Games) - #"XboxNetApiSvc" # Xbox Live Networking Service (Disabling Breaks Xbox Live Games) + "XblAuthManager" # Xbox Live Auth Manager (Disabling Breaks Xbox Live Games) + "XblGameSave" # Xbox Live Game Save Service (Disabling Breaks Xbox Live Games) + "XboxNetApiSvc" # Xbox Live Networking Service (Disabling Breaks Xbox Live Games) "XboxGipSvc" #Disables Xbox Accessory Management Service "ndu" # Windows Network Data Usage Monitor "WerSvc" #disables windows error reporting