From cf982af87c5a510547744cbcebb60162b91aa4e6 Mon Sep 17 00:00:00 2001 From: Raphire <9938813+Raphire@users.noreply.github.com> Date: Sat, 27 Sep 2025 14:36:37 +0200 Subject: [PATCH] Change order of Default Mode parameters --- Win11Debloat.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index a41b073..c87540c 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -1559,12 +1559,12 @@ if ((-not $script:Params.Count) -or $RunDefaults -or $RunDefaultsLite -or $RunSa # Only add these options for Windows 11 users (build 22000+) if ($WinVersion -ge 22000) { - AddParameter 'DisableRecall' 'Disable Windows Recall' $false - AddParameter 'DisableClickToDo' 'Disable Click to Do (AI text & image analysis)' $false - if ($script:ModernStandbySupported) { AddParameter 'DisableModernStandbyNetworking' 'Disable network connectivity during Modern Standby' $false } + + AddParameter 'DisableRecall' 'Disable Windows Recall' $false + AddParameter 'DisableClickToDo' 'Disable Click to Do (AI text & image analysis)' $false } PrintFromFile "$PSScriptRoot/Assets/Menus/DefaultSettings" "Default Mode" $false