🐍 Python 3.10+
Disable Windows Welcome Experience (Python)
Disables the full-screen "suggested content" tips that appear after updates. Applies the tweak via the stdlib winreg module.
set_disable_windows_welcome_experience.py
#!/usr/bin/env python3
"""
set_disable_windows_welcome_experience.py
Disable Windows Welcome Experience.
Disables the full-screen "suggested content" tips that appear after updates.
Usage:
python set_disable_windows_welcome_experience.py
"""
import winreg
def main() -> None:
key = winreg.CreateKeyEx(
winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement", 0, winreg.KEY_SET_VALUE
)
winreg.SetValueEx(key, "ScoobeSystemSettingEnabled", 0, winreg.REG_DWORD, 0)
winreg.CloseKey(key)
print("Disable Windows Welcome Experience applied.")
if __name__ == "__main__":
main()