diff --git a/README.md b/README.md index 1b50429..964c9de 100644 --- a/README.md +++ b/README.md @@ -154,10 +154,8 @@ You can pick and choose exactly which modifications you want the script to make, - Microsoft.GetHelp (Required for some Windows 11 Troubleshooters) - Microsoft.MSPaint (Paint 3D) - Microsoft.OutlookForWindows*** (New mail app) - - Microsoft.PowerAutomateDesktop**** - Microsoft.Paint (Classic Paint) - Microsoft.People** (Required for & included with Mail & Calendar) - - Microsoft.RemoteDesktop**** - Microsoft.ScreenSketch (Snipping Tool) - Microsoft.Whiteboard (Only preinstalled on devices with touchscreen and/or pen support) - Microsoft.Windows.Photos @@ -169,7 +167,6 @@ You can pick and choose exactly which modifications you want the script to make, - Microsoft.YourPhone (Phone Link) - Microsoft.Xbox.TCUI (UI framework, removing this may break MS store, photos and certain games) - Microsoft.ZuneMusic (Modern Media Player) - - Windows.DevHome**** Apps that are required or useful for gaming: - Microsoft.GamingApp* (Modern Xbox Gaming App, required for installing some games) @@ -178,6 +175,11 @@ You can pick and choose exactly which modifications you want the script to make, - Microsoft.XboxIdentityProvider (Xbox sign-in framework, required for some games) - Microsoft.XboxSpeechToTextOverlay (Might be required for some games, NOTE: This app cannot be reinstalled!) + Apps that are required or useful for developers: + - Microsoft.PowerAutomateDesktop**** + - Microsoft.RemoteDesktop**** + - Windows.DevHome**** + * Can be removed in custom mode or by running the script with the '-RemoveGamingApps' parameter. ** Can be removed in custom mode or by running the script with the '-RemoveCommApps' parameter. *** Can be removed in custom mode or by running the script with the '-RemoveW11Outlook' parameter. diff --git a/Regfiles/Disable_Windows_Suggestions.reg b/Regfiles/Disable_Windows_Suggestions.reg index 258146c..4f44528 100644 Binary files a/Regfiles/Disable_Windows_Suggestions.reg and b/Regfiles/Disable_Windows_Suggestions.reg differ diff --git a/Regfiles/Undo/Enable_Windows_Suggestions.reg b/Regfiles/Undo/Enable_Windows_Suggestions.reg index 11a0cb0..97c0a74 100644 Binary files a/Regfiles/Undo/Enable_Windows_Suggestions.reg and b/Regfiles/Undo/Enable_Windows_Suggestions.reg differ diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 2027e94..efbe9ec 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -774,7 +774,7 @@ else { Write-Output "Script completed successfully!" # Suppress prompt if Silent parameter was passed - if(-not $Silent) { + if (-not $Silent) { Write-Output "" Write-Output "Press any key to exit..." $null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")