Start Menu Recommendations
config/tweaks.json
1674 "WPFToggleStartMenuRecommendations": {
1675 "Content": "Start Menu Recommendations",
1676 "Description": "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
1677 "category": "Customize Preferences",
1678 "panel": "2",
1679 "Type": "Toggle",
1680 "registry": [
1681 {
1682 "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Start",
1683 "Name": "HideRecommendedSection",
1684 "Value": "0",
1685 "Type": "DWord",
1686 "OriginalValue": "1",
1687 "DefaultState": "true"
1688 },
1689 {
1690 "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Education",
1691 "Name": "IsEducationEnvironment",
1692 "Value": "0",
1693 "Type": "DWord",
1694 "OriginalValue": "1",
1695 "DefaultState": "true"
1696 },
1697 {
1698 "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
1699 "Name": "HideRecommendedSection",
1700 "Value": "0",
1701 "Type": "DWord",
1702 "OriginalValue": "1",
1703 "DefaultState": "true"
1704 }
1705 ],
1706 "InvokeScript": [
1707 "
1708 Invoke-WinUtilExplorerUpdate -action \"restart\"
1709 "
1710 ],
1711 "UndoScript": [
1712 "
1713 Invoke-WinUtilExplorerUpdate -action \"restart\"
1714 "
1715 ],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.