Only include Recall in defaults for Windows 11

This commit is contained in:
Raphire
2025-09-12 22:23:24 +02:00
parent b9594f2671
commit b0fed2afaf
3 changed files with 15 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ Telemetry, Tracking & Suggested Content
Bing Web Search, Copilot & AI Features Bing Web Search, Copilot & AI Features
- Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Bing web search, Bing AI and Cortana from Windows search.
- Disable & remove Microsoft Copilot. (W11 only) - Disable & remove Microsoft Copilot.
- Disable Windows Recall snapshots. (W11 only) - Disable Windows Recall snapshots. (W11 only)
- Disable AI Features in Paint (W11 only) - Disable AI Features in Paint (W11 only)
- Disable AI Features in Notepad (W11 only) - Disable AI Features in Notepad (W11 only)
@@ -68,7 +68,7 @@ The default mode applies the changes that are recommended for most users. This i
- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable ads, suggestions and the MSN news feed in Microsoft Edge.
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
- Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Bing web search, Bing AI and Cortana from Windows search.
- Disable & remove Microsoft Copilot. (W11 only) - Disable & remove Microsoft Copilot.
- Disable Windows Recall snapshots. (W11 only) - Disable Windows Recall snapshots. (W11 only)
- Disable Fast Start-up to ensure a full shutdown. - Disable Fast Start-up to ensure a full shutdown.
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only) - Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)

View File

@@ -108,7 +108,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
#### Bing Web Search, Copilot & AI Features #### Bing Web Search, Copilot & AI Features
- Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Bing web search, Bing AI and Cortana from Windows search.
- Disable & remove Microsoft Copilot. (W11 only) - Disable & remove Microsoft Copilot.
- Disable Windows Recall snapshots. (W11 only) - Disable Windows Recall snapshots. (W11 only)
- Disable AI Features in Edge (W11 only) - Disable AI Features in Edge (W11 only)
- Disable AI Features in Paint (W11 only) - Disable AI Features in Paint (W11 only)
@@ -169,7 +169,7 @@ Win11Debloat offers a default mode that allows you to quickly and easily apply t
- Disable tips, tricks, suggestions and ads in start, settings, notifications, File Explorer, and on the lockscreen. - Disable tips, tricks, suggestions and ads in start, settings, notifications, File Explorer, and on the lockscreen.
- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable ads, suggestions and the MSN news feed in Microsoft Edge.
- Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Bing web search, Bing AI and Cortana from Windows search.
- Disable & remove Microsoft Copilot. (W11 only) - Disable & remove Microsoft Copilot.
- Disable Windows Recall snapshots. (W11 only) - Disable Windows Recall snapshots. (W11 only)
- Disable Fast Start-up to ensure a full shutdown. - Disable Fast Start-up to ensure a full shutdown.
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only) - Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)

View File

@@ -1487,7 +1487,7 @@ if ((-not $script:Params.Count) -or $RunDefaults -or $RunWin11Defaults -or $RunS
Read-Host | Out-Null Read-Host | Out-Null
} }
$DefaultParameterNames = 'CreateRestorePoint','RemoveApps','DisableTelemetry','DisableBing','DisableLockscreenTips','DisableSuggestions','DisableEdgeAds','ShowKnownFileExt','DisableWidgets','HideChat','DisableCopilot','DisableRecall','DisableFastStartup' $DefaultParameterNames = 'CreateRestorePoint','RemoveApps','DisableTelemetry','DisableBing','DisableLockscreenTips','DisableSuggestions','DisableEdgeAds','ShowKnownFileExt','DisableWidgets','HideChat','DisableCopilot','DisableFastStartup'
PrintHeader 'Default Mode' PrintHeader 'Default Mode'
@@ -1503,10 +1503,16 @@ if ((-not $script:Params.Count) -or $RunDefaults -or $RunWin11Defaults -or $RunS
$script:Params.Add('Hide3dObjects', $Hide3dObjects) $script:Params.Add('Hide3dObjects', $Hide3dObjects)
} }
# Only add this option for Windows 11 users (build 22000+), if it doesn't already exist # Only add these options for Windows 11 users (build 22000+), if it doesn't already exist
if (($WinVersion -ge 22000) -and $script:ModernStandbySupported -and (-not $script:Params.ContainsKey('DisableModernStandbyNetworking'))) { if ($WinVersion -ge 22000) {
if ($script:ModernStandbySupported -and (-not $script:Params.ContainsKey('DisableModernStandbyNetworking'))) {
$script:Params.Add('DisableModernStandbyNetworking', $true) $script:Params.Add('DisableModernStandbyNetworking', $true)
} }
if (-not $script:Params.ContainsKey('DisableRecall')) {
$script:Params.Add('DisableRecall', $true)
}
}
} }
# Custom mode, show & add options based on user input # Custom mode, show & add options based on user input