From 2d9e8530eb57418d70687fcb49aaaef7e915fe57 Mon Sep 17 00:00:00 2001 From: Raphire <9938813+Raphire@users.noreply.github.com> Date: Fri, 14 Nov 2025 23:45:06 +0100 Subject: [PATCH] No longer show option to disable start recommended on build 26200+ This setting was made redundant by the updated Start menu --- Win11Debloat.ps1 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index c4708e3..3764fba 100755 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -1163,10 +1163,13 @@ function DisplayCustomModeOptions { } } - Write-Output "" + # Don't show option for users running build 26200 and above, as this setting was removed in this build + if ($WinVersion -lt 26200) { + Write-Output "" - if ($( Read-Host -Prompt " Disable the recommended section in the start menu? This applies to all users (y/n)" ) -eq 'y') { - AddParameter 'DisableStartRecommended' 'Disable the recommended section in the start menu.' + if ($( Read-Host -Prompt " Disable the recommended section in the start menu? This applies to all users (y/n)" ) -eq 'y') { + AddParameter 'DisableStartRecommended' 'Disable the recommended section in the start menu.' + } } Write-Output ""