Skip to content

Start Menu Recommendations

config/tweaks.json
1639  "WPFToggleStartMenuRecommendations": {
1640    "Content": "Start Menu Recommendations",
1641    "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
1642    "category": "Customize Preferences",
1643    "panel": "2",
1644    "Type": "Toggle",
1645    "registry": [
1646      {
1647        "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Start",
1648        "Name": "HideRecommendedSection",
1649        "Value": "0",
1650        "Type": "DWord",
1651        "OriginalValue": "1",
1652        "DefaultState": "true"
1653      },
1654      {
1655        "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Education",
1656        "Name": "IsEducationEnvironment",
1657        "Value": "0",
1658        "Type": "DWord",
1659        "OriginalValue": "1",
1660        "DefaultState": "true"
1661      },
1662      {
1663        "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
1664        "Name": "HideRecommendedSection",
1665        "Value": "0",
1666        "Type": "DWord",
1667        "OriginalValue": "1",
1668        "DefaultState": "true"
1669      }
1670    ],
1671    "InvokeScript": [
1672      "
1673      Invoke-WinUtilExplorerUpdate -action \"restart\"
1674      "
1675    ],
1676    "UndoScript": [
1677      "
1678      Invoke-WinUtilExplorerUpdate -action \"restart\"
1679      "
1680    ],

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 and Microsoft’s Website.