🐍 Python 3.10+
Disable Start Menu App Suggestions (Python)
Turns off sponsored app suggestions in the Start menu. Applies the tweak via the stdlib winreg module.
set_disable_start_menu_ads.py
#!/usr/bin/env python3
"""
set_disable_start_menu_ads.py
Disable Start Menu App Suggestions.
Turns off sponsored app suggestions in the Start menu.
Usage:
python set_disable_start_menu_ads.py
"""
import winreg
def main() -> None:
key = winreg.CreateKeyEx(
winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", 0, winreg.KEY_SET_VALUE
)
winreg.SetValueEx(key, "SubscribedContent-338388Enabled", 0, winreg.REG_DWORD, 0)
winreg.CloseKey(key)
print("Disable Start Menu App Suggestions applied.")
if __name__ == "__main__":
main()