Add Search Highlights, Find My Device toggles and Lenovo/Dell OEM apps (#508)

This commit is contained in:
@lexlucas
2026-03-07 18:32:06 +00:00
committed by GitHub
parent 495762e378
commit bbfbd7193e
11 changed files with 106 additions and 0 deletions

View File

@@ -73,6 +73,18 @@
"Description": "AI assistant integrated into Windows", "Description": "AI assistant integrated into Windows",
"SelectedByDefault": true "SelectedByDefault": true
}, },
{
"FriendlyName": "Copilot+ AI Hub",
"AppId": "Microsoft.Windows.AIHub",
"Description": "Copilot+ AI Hub app (Windows 11 24H2+)",
"SelectedByDefault": true
},
{
"FriendlyName": "Microsoft PC Manager",
"AppId": "Microsoft.PCManager",
"Description": "Microsoft PC Manager system cleanup and optimization tool (often preinstalled)",
"SelectedByDefault": true
},
{ {
"FriendlyName": "Get Started", "FriendlyName": "Get Started",
"AppId": "Microsoft.Getstarted", "AppId": "Microsoft.Getstarted",
@@ -828,6 +840,36 @@
"AppId": "AD2F1837.myHP", "AppId": "AD2F1837.myHP",
"Description": "HP OEM central hub app for device info, support, and services", "Description": "HP OEM central hub app for device info, support, and services",
"SelectedByDefault": false "SelectedByDefault": false
},
{
"FriendlyName": "Lenovo Vantage",
"AppId": "E046963F.LenovoCompanion",
"Description": "Lenovo OEM hub app for device settings, updates, and support",
"SelectedByDefault": false
},
{
"FriendlyName": "Lenovo Vantage Service",
"AppId": "LenovoCompanyLimited.LenovoVantageService",
"Description": "Background service component for Lenovo Vantage",
"SelectedByDefault": false
},
{
"FriendlyName": "Dell SupportAssist",
"AppId": "DellInc.DellSupportAssistforPCs",
"Description": "Dell OEM support, diagnostic, and update tool",
"SelectedByDefault": false
},
{
"FriendlyName": "Dell Digital Delivery Services",
"AppId": "DellInc.DellDigitalDelivery",
"Description": "Dell OEM software for delivering pre-purchased software",
"SelectedByDefault": false
},
{
"FriendlyName": "Dell Mobile Connect",
"AppId": "DellInc.DellMobileConnect",
"Description": "Dell OEM app for linking Android/iOS phone to PC (superseded by Phone Link)",
"SelectedByDefault": false
} }
] ]
} }

View File

@@ -384,6 +384,19 @@
"MinVersion": null, "MinVersion": null,
"MaxVersion": null "MaxVersion": null
}, },
{
"FeatureId": "DisableFindMyDevice",
"Label": "Find My Device location tracking",
"ToolTip": "This will turn off the 'Find My Device' feature, which periodically sends your device's location to Microsoft. This feature uses policies, which will lock down certain settings.",
"Category": "Privacy & Suggested Content",
"Action": "Disable",
"RegistryKey": "Disable_Find_My_Device.reg",
"ApplyText": "> Disabling Find My Device location tracking...",
"UndoAction": "Enable",
"RegistryUndoKey": "Enable_Find_My_Device.reg",
"MinVersion": null,
"MaxVersion": null
},
{ {
"FeatureId": "DisableSearchHistory", "FeatureId": "DisableSearchHistory",
"Label": "local Windows Search history", "Label": "local Windows Search history",
@@ -575,6 +588,19 @@
"MinVersion": null, "MinVersion": null,
"MaxVersion": null "MaxVersion": null
}, },
{
"FeatureId": "DisableSearchHighlights",
"Label": "Search Highlights (dynamic/branded content in Windows search box)",
"ToolTip": "This will turn off Search Highlights, which shows dynamically curated branded content and trending topics in the Windows search box on the taskbar.",
"Category": "Privacy & Suggested Content",
"Action": "Disable",
"RegistryKey": "Disable_Search_Highlights.reg",
"ApplyText": "> Disabling Search Highlights in the Windows search box...",
"UndoAction": "Enable",
"RegistryUndoKey": "Enable_Search_Highlights.reg",
"MinVersion": 22621,
"MaxVersion": null
},
{ {
"FeatureId": "DisableStartPhoneLink", "FeatureId": "DisableStartPhoneLink",
"Label": "Phone Link integration in the start menu", "Label": "Phone Link integration in the start menu",

View File

@@ -25,6 +25,10 @@
"Name": "DisableBing", "Name": "DisableBing",
"Value": true "Value": true
}, },
{
"Name": "DisableSearchHighlights",
"Value": true
},
{ {
"Name": "DisableCopilot", "Name": "DisableCopilot",
"Value": true "Value": true

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Disable Find My Device location tracking
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FindMyDevice]
"AllowFindMyDevice"=dword:00000000

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Disable Search Highlights (dynamic/branded content in Windows search box)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SearchSettings]
"IsDynamicSearchBoxEnabled"=dword:00000000

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Disable Find My Device location tracking
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FindMyDevice]
"AllowFindMyDevice"=dword:00000000

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Disable Search Highlights (dynamic/branded content in Windows search box)
[hkey_users\default\Software\Microsoft\Windows\CurrentVersion\SearchSettings]
"IsDynamicSearchBoxEnabled"=dword:00000000

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Restore Find My Device to Windows default
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FindMyDevice]
"AllowFindMyDevice"=-

View File

@@ -0,0 +1,5 @@
Windows Registry Editor Version 5.00
; Re-enable Search Highlights (dynamic/branded content in Windows search box)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SearchSettings]
"IsDynamicSearchBoxEnabled"=dword:00000001

View File

@@ -37,6 +37,7 @@ param (
[switch]$DisableLockscreenTips, [switch]$DisableLockscreenTips,
[switch]$DisableSuggestions, [switch]$DisableSuggestions,
[switch]$DisableLocationServices, [switch]$DisableLocationServices,
[switch]$DisableFindMyDevice,
[switch]$DisableEdgeAds, [switch]$DisableEdgeAds,
[switch]$DisableBraveBloat, [switch]$DisableBraveBloat,
[switch]$DisableSettings365Ads, [switch]$DisableSettings365Ads,
@@ -61,6 +62,7 @@ param (
[switch]$DisablePaintAI, [switch]$DisablePaintAI,
[switch]$DisableNotepadAI, [switch]$DisableNotepadAI,
[switch]$DisableEdgeAI, [switch]$DisableEdgeAI,
[switch]$DisableSearchHighlights,
[switch]$DisableWidgets, [switch]$DisableWidgets,
[switch]$HideChat, [switch]$HideChat,
[switch]$EnableEndTask, [switch]$EnableEndTask,

2
Win11Debloat.ps1 Executable file → Normal file
View File

@@ -35,10 +35,12 @@ param (
[switch]$PreventUpdateAutoReboot, [switch]$PreventUpdateAutoReboot,
[switch]$DisableDeliveryOptimization, [switch]$DisableDeliveryOptimization,
[switch]$DisableBing, [switch]$DisableBing,
[switch]$DisableSearchHighlights,
[switch]$DisableDesktopSpotlight, [switch]$DisableDesktopSpotlight,
[switch]$DisableLockscreenTips, [switch]$DisableLockscreenTips,
[switch]$DisableSuggestions, [switch]$DisableSuggestions,
[switch]$DisableLocationServices, [switch]$DisableLocationServices,
[switch]$DisableFindMyDevice,
[switch]$DisableEdgeAds, [switch]$DisableEdgeAds,
[switch]$DisableBraveBloat, [switch]$DisableBraveBloat,
[switch]$DisableSettings365Ads, [switch]$DisableSettings365Ads,