Add new options to change start menu 'All Apps' view in addition to hiding it

This commit is contained in:
Jeffrey
2026-06-06 13:54:33 +02:00
parent 2574e725bc
commit 8c654d4b88
10 changed files with 116 additions and 3 deletions

View File

@@ -280,6 +280,38 @@
]
}
]
},
{
"GroupId": "StartAllAppsView",
"Label": "Start menu 'All Apps' view",
"ToolTip": "This setting allows you to change the layout of the 'All Apps' section in the start menu, or hide it entirely. 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",
"Values": [
{
"Label": "Hide",
"FeatureIds": [
"DisableStartAllApps"
]
},
{
"Label": "Category (Default)",
"FeatureIds": [
"StartAllAppsCategory"
]
},
{
"Label": "Grid",
"FeatureIds": [
"StartAllAppsGrid"
]
},
{
"Label": "List",
"FeatureIds": [
"StartAllAppsList"
]
}
]
}
],
"Features": [
@@ -1538,6 +1570,45 @@
"RegistryUndoKey": "Show_Drive_Letters_Last.reg",
"MinVersion": null,
"MaxVersion": null
},
{
"FeatureId": "StartAllAppsCategory",
"Label": "Show All Apps in Category view (Default)",
"ToolTip": "This will set the All Apps section in the start menu to show apps grouped by category.",
"Category": "Start Menu & Search",
"RegistryKey": "Start_AllApps_Category.reg",
"ApplyText": "Setting All Apps view to Category...",
"UndoLabel": null,
"ApplyUndoText": null,
"RegistryUndoKey": null,
"MinVersion": 26200,
"MaxVersion": null
},
{
"FeatureId": "StartAllAppsGrid",
"Label": "Show All Apps in Grid view",
"ToolTip": "This will set the All Apps section in the start menu to show apps in an alphabetical grid layout.",
"Category": "Start Menu & Search",
"RegistryKey": "Start_AllApps_Grid.reg",
"ApplyText": "Setting All Apps view to Grid...",
"UndoLabel": "Show All Apps in Category view",
"ApplyUndoText": "Setting All Apps view to Category...",
"RegistryUndoKey": "Start_AllApps_Category.reg",
"MinVersion": 26200,
"MaxVersion": null
},
{
"FeatureId": "StartAllAppsList",
"Label": "Show All Apps in List view",
"ToolTip": "This will set the All Apps section in the start menu to show apps in an alphabetical list layout.",
"Category": "Start Menu & Search",
"RegistryKey": "Start_AllApps_List.reg",
"ApplyText": "Setting All Apps view to List...",
"UndoLabel": "Show All Apps in Category view",
"ApplyUndoText": "Setting All Apps view to Category...",
"RegistryUndoKey": "Start_AllApps_Category.reg",
"MinVersion": 26200,
"MaxVersion": null
}
]
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -56,7 +56,7 @@ param (
[switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb,
[switch]$HideTaskview,
[switch]$DisableStartRecommended,
[switch]$DisableStartAllApps,
[switch]$DisableStartAllApps, [switch]$StartAllAppsCategory, [switch]$StartAllAppsGrid, [switch]$StartAllAppsList,
[switch]$DisableStartPhoneLink,
[switch]$DisableCopilot,
[switch]$DisableRecall,

View File

@@ -56,7 +56,7 @@ param (
[switch]$HideSearchTb, [switch]$ShowSearchIconTb, [switch]$ShowSearchLabelTb, [switch]$ShowSearchBoxTb,
[switch]$HideTaskview,
[switch]$DisableStartRecommended,
[switch]$DisableStartAllApps,
[switch]$DisableStartAllApps, [switch]$StartAllAppsCategory, [switch]$StartAllAppsGrid, [switch]$StartAllAppsList,
[switch]$DisableStartPhoneLink,
[switch]$DisableCopilot,
[switch]$DisableRecall,

View File

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