#!/usr/bin/env python3
"""
check_disable_start_menu_ads_status.py

Checks whether "Disable Start Menu App Suggestions" is currently applied.

Usage:
    python check_disable_start_menu_ads_status.py
"""

import winreg


def main() -> None:
    try:
        key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager")
        value, _ = winreg.QueryValueEx(key, "SubscribedContent-338388Enabled")
        winreg.CloseKey(key)
        print(f"Current value of 'SubscribedContent-338388Enabled': {value}")
    except FileNotFoundError:
        print("'SubscribedContent-338388Enabled' is not set (using the Windows default).")


if __name__ == "__main__":
    main()