Created
January 2, 2018 23:15
-
-
Save wdormann/49f1807431b0d5b5cd151337e6478f20 to your computer and use it in GitHub Desktop.
Attempt at disabling Windows 10 automatic installation of 3rd-party foistware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy] | |
"Disabled"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] | |
"SubscribedContent-338388Enabled"=dword:00000000 | |
Also note that this workaround is for a single-user system, where the change is applied before the system has internet connectivity. For multi-user systems, this change must be applied to each user. Alternatively, it can be applied to the default windows user profile hive, and the change will be there for newly-created users.
Note that this appears to work as well: https://twitter.com/Barnacules/status/1185783977941983233
In particular,
🗝 Key
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent
💾 Value
[DWORD] DisableWindowsConsumerFeatures = 1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The first registry value, [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy]
"Disabled"=dword:00000001
appears to be undocumented, but seems to block the automatic installation of software by Microsoft on a Windows 10 system.
The second registry value, [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager]
"SubscribedContent-338388Enabled"=dword:00000000, is for disabling "suggested" applications in the Windows 10 Start menu.