Where it lives
HKCU\Software\Policies\Microsoft\Windows\CloudContent → DisableConsumerFeatures (DWORD) = 1. Behavior: Windows stops installing third-party consumer promotional tiles, suggestions and similar consumer-content features for your account.
Why restore is deletion
This is a policy key shape: default state is “value absent.” The honest undo is:
Remove-ItemProperty -Path 'HKCU:\Software\Policies\Microsoft\Windows\CloudContent' -Name DisableConsumerFeatures -ErrorAction SilentlyContinueWriting 0 would leave a policies-managed marker (policy engines merge keys presence-vs-absence differently from “value = 0”). Tools shipping “restore writes the opposite” ship sound, not compliance: the machine still looks managed because the key is present, lookalike-lingering policy state audits notice for years.
Broader lesson in policy data hygiene
- Per-value documentation should say whether stock is a zero or an absent — see the scope explainer before automating restores.
- Policies namespace tools should expose the presence/absence choice in the UI (“return to unmanaged”) rather than true/false alone — that wording is how you ship restorable privacy.
- HKLM mirror exists; the per-user view can be merged-lower-precedence by design, and admins manage via policy. Your per-user flip stands on user-scope devices and can't argue with centrally managed baselines.