Recommendations in Start Menu

config/tweaks.json
2256  "WPFToggleStartMenuRecommendations": {
2257    "Content": "Recommendations in Start Menu",
2258    "Description": "If disabled then you will not see recommendations in the Start Menu.",
2259    "category": "Customize Preferences",
2260    "panel": "2",
2261    "Type": "Toggle",
2262    "registry": [
2263      {
2264        "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Start",
2265        "Name": "HideRecommendedSection",
2266        "Value": "0",
2267        "OriginalValue": "1",
2268        "DefaultState": "true",
2269        "Type": "DWord"
2270      },
2271      {
2272        "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Education",
2273        "Name": "IsEducationEnvironment",
2274        "Value": "0",
2275        "OriginalValue": "1",
2276        "DefaultState": "true",
2277        "Type": "DWord"
2278      },
2279      {
2280        "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
2281        "Name": "HideRecommendedSection",
2282        "Value": "0",
2283        "OriginalValue": "1",
2284        "DefaultState": "true",
2285        "Type": "DWord"
2286      }
2287    ],
2288    "InvokeScript": [
2289      "
2290      Invoke-WinUtilExplorerUpdate -action \"restart\"
2291      "
2292    ],
2293    "UndoScript": [
2294      "
2295      Invoke-WinUtilExplorerUpdate -action \"restart\"
2296      "
2297    ],

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.