Start Menu Recommendations
config/tweaks.json
1696 "WPFToggleStartMenuRecommendations": {
1697 "Content": "Start Menu Recommendations",
1698 "Description": "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
1699 "category": "Customize Preferences",
1700 "panel": "2",
1701 "Type": "Toggle",
1702 "registry": [
1703 {
1704 "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Start",
1705 "Name": "HideRecommendedSection",
1706 "Value": "0",
1707 "Type": "DWord",
1708 "OriginalValue": "1",
1709 "DefaultState": "true"
1710 },
1711 {
1712 "Path": "HKLM:\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\Education",
1713 "Name": "IsEducationEnvironment",
1714 "Value": "0",
1715 "Type": "DWord",
1716 "OriginalValue": "1",
1717 "DefaultState": "true"
1718 },
1719 {
1720 "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
1721 "Name": "HideRecommendedSection",
1722 "Value": "0",
1723 "Type": "DWord",
1724 "OriginalValue": "1",
1725 "DefaultState": "true"
1726 }
1727 ],
1728 "InvokeScript": [
1729 "
1730 Invoke-WinUtilExplorerUpdate -action \"restart\"
1731 "
1732 ],
1733 "UndoScript": [
1734 "
1735 Invoke-WinUtilExplorerUpdate -action \"restart\"
1736 "
1737 ],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.