Add option to hide the 'All Apps' section from the start menu (#513)

This commit is contained in:
Raphire
2026-03-09 23:03:56 +01:00
parent 992c80bc1e
commit 8401474a79
7 changed files with 33 additions and 2 deletions

View File

@@ -575,6 +575,19 @@
"MinVersion": 22621, "MinVersion": 22621,
"MaxVersion": null "MaxVersion": null
}, },
{
"FeatureId": "DisableStartAllApps",
"Label": "'All Apps' section in the start menu",
"ToolTip": "This will hide the 'All Apps' section in the start menu, which shows all installed apps. WARNING: Hiding this section may make it harder to find installed apps on your system. This feature uses policies, which will lock down certain settings.",
"Category": "Start Menu & Search",
"Action": "Hide",
"RegistryKey": "Disable_Start_All_Apps.reg",
"ApplyText": "Disabling the 'All Apps' section in the start menu...",
"UndoAction": "Show",
"RegistryUndoKey": "Enable_Start_All_Apps.reg",
"MinVersion": 26200,
"MaxVersion": null
},
{ {
"FeatureId": "DisableStartPhoneLink", "FeatureId": "DisableStartPhoneLink",
"Label": "Phone Link integration in the start menu", "Label": "Phone Link integration in the start menu",

View File

@@ -129,8 +129,9 @@ Below is an overview of the key features and functionality offered by Win11Deblo
#### Start Menu & Search #### Start Menu & Search
- Remove or replace all pinned apps from start for the current user, or for all existing & new users. (W11 only) - Remove or replace all pinned apps from the start menu. (W11 only)
- Disable the recommended section in the start menu. (W11 only) - Hide the recommended section in the start menu. (W11 only)
- Hide the 'All Apps' section in the start menu. (W11 only)
- Disable the Phone Link mobile devices integration in the start menu. (W11 only) - Disable the Phone Link mobile devices integration in the start menu. (W11 only)
- Disable Bing web search & Copilot integration in Windows search. - Disable Bing web search & Copilot integration in Windows search.
- Disable Microsoft Store app suggestions in Windows search. (W11 only) - Disable Microsoft Store app suggestions in Windows search. (W11 only)

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoStartMenuMorePrograms"=dword:00000001

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[hkey_users\default\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoStartMenuMorePrograms"=dword:00000001

View File

@@ -0,0 +1,7 @@
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoStartMenuMorePrograms"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoStartMenuMorePrograms"=-

View File

@@ -57,6 +57,7 @@ param (
[switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb, [switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb,
[switch]$HideTaskview, [switch]$HideTaskview,
[switch]$DisableStartRecommended, [switch]$DisableStartRecommended,
[switch]$DisableStartAllApps,
[switch]$DisableStartPhoneLink, [switch]$DisableStartPhoneLink,
[switch]$DisableCopilot, [switch]$DisableCopilot,
[switch]$DisableRecall, [switch]$DisableRecall,

View File

@@ -60,6 +60,7 @@ param (
[switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb, [switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb,
[switch]$HideTaskview, [switch]$HideTaskview,
[switch]$DisableStartRecommended, [switch]$DisableStartRecommended,
[switch]$DisableStartAllApps,
[switch]$DisableStartPhoneLink, [switch]$DisableStartPhoneLink,
[switch]$DisableCopilot, [switch]$DisableCopilot,
[switch]$DisableRecall, [switch]$DisableRecall,