--- title: "Recommendations in Start Menu" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=2248} "WPFToggleStartMenuRecommendations": { "Content": "Recommendations in Start Menu", "Description": "If disabled then you will not see recommendations in the Start Menu.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Start", "Name": "HideRecommendedSection", "Value": "0", "OriginalValue": "1", "DefaultState": "true", "Type": "DWord" }, { "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Education", "Name": "IsEducationEnvironment", "Value": "0", "OriginalValue": "1", "DefaultState": "true", "Type": "DWord" }, { "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer", "Name": "HideRecommendedSection", "Value": "0", "OriginalValue": "1", "DefaultState": "true", "Type": "DWord" } ], "InvokeScript": [ " Invoke-WinUtilExplorerUpdate -action \"restart\" " ], "UndoScript": [ " Invoke-WinUtilExplorerUpdate -action \"restart\" " ], ``` ## Registry Changes Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place. You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).