|
2 | 2 | title: Configure Content Delivery Manager |
3 | 3 | description: Configures Content Delivery Manager not to download applications like Candy Crush Soda and turns off suggested content (tips/tricks/facts/suggestions/ads) for QoL and privacy. |
4 | 4 | actions: |
5 | | - - !powerShell: |
6 | | - command: | |
7 | | - . "$env:windir\AtlasModules\Scripts\regHelp.ps1" -RegistryObjects @( |
8 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'ContentDeliveryAllowed'; Data = '0'; Type = 'REG_DWORD' }, |
9 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'FeatureManagementEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
10 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContentEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
11 | | - # Ensure no settings get changed |
12 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'RemediationRequired'; Data = '0'; Type = 'REG_DWORD' }, |
13 | | - # Prevent suggested app installs |
14 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'OemPreInstalledAppsEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
15 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'PreInstalledAppsEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
16 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'PreInstalledAppsEverEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
17 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SilentInstalledAppsEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
18 | | - # 'Show me notifications in the Settings app' in Windows 11 |
19 | | - @{ Path = 'HKCU\Software\Microsoft\Windows\CurrentVersion\SystemSettings\AccountNotifications'; Value = 'EnableAccountNotifications'; Data = '0'; Type = 'REG_DWORD' }, |
20 | | - # Windows welcome experience |
21 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-310093Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
22 | | - # Suggested content in the Settings app |
23 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-338393Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
24 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-353694Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
25 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-353696Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
26 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SystemPaneSuggestionsEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
27 | | - # "Get fun facts, tips, tricks, and more on your lock screen" |
28 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-338387Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
29 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'RotatingLockScreenOverlayEnabled'; Data = '0'; Type = 'REG_DWORD' }, |
30 | | - # Suggestions in Start |
31 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-338388Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
32 | | - # "Get tips, tricks, and suggestions as you use Windows" |
33 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SubscribedContent-338389Enabled'; Data = '0'; Type = 'REG_DWORD' }, |
34 | | - @{ Path = 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'; Value = 'SoftLandingEnabled'; Data = '0'; Type = 'REG_DWORD' } |
35 | | - ) |
36 | | - wait: true |
| 5 | + - !registryValue: |
| 6 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 7 | + value: 'ContentDeliveryAllowed' |
| 8 | + data: '0' |
| 9 | + type: REG_DWORD |
| 10 | + |
| 11 | + |
| 12 | + - !registryValue: |
| 13 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 14 | + value: 'FeatureManagementEnabled' |
| 15 | + data: '0' |
| 16 | + type: REG_DWORD |
| 17 | + |
| 18 | + |
| 19 | + - !registryValue: |
| 20 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 21 | + value: 'SubscribedContentEnabled' |
| 22 | + data: '0' |
| 23 | + type: REG_DWORD |
| 24 | + |
| 25 | + |
| 26 | + # Ensure no settings get changed |
| 27 | + - !registryValue: |
| 28 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 29 | + value: 'RemediationRequired' |
| 30 | + data: '0' |
| 31 | + type: REG_DWORD |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | + # Prevent suggested app installs |
| 36 | + # https://www.tenforums.com/tutorials/68217-turn-off-automatic-installation-suggested-apps-windows-10-a.html |
| 37 | + - !registryValue: |
| 38 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 39 | + value: 'OemPreInstalledAppsEnabled' |
| 40 | + data: '0' |
| 41 | + type: REG_DWORD |
| 42 | + |
| 43 | + |
| 44 | + - !registryValue: |
| 45 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 46 | + value: 'PreInstalledAppsEnabled' |
| 47 | + data: '0' |
| 48 | + type: REG_DWORD |
| 49 | + |
| 50 | + |
| 51 | + - !registryValue: |
| 52 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 53 | + value: 'PreInstalledAppsEverEnabled' |
| 54 | + data: '0' |
| 55 | + type: REG_DWORD |
| 56 | + |
| 57 | + |
| 58 | + - !registryValue: |
| 59 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 60 | + value: 'SilentInstalledAppsEnabled' |
| 61 | + data: '0' |
| 62 | + type: REG_DWORD |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | + # Commented as these removals would likely break re-enabling content |
| 67 | + # Content would likely stay disabled anyways |
| 68 | + # - !registryKey: |
| 69 | + # path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\Subscriptions' |
| 70 | + # - !registryKey: |
| 71 | + # path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SuggestedApps' |
| 72 | + |
| 73 | + # 'Show me notifications in the Settings app' in Windows 11 |
| 74 | + - !registryValue: |
| 75 | + path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\SystemSettings\AccountNotifications' |
| 76 | + value: 'EnableAccountNotifications' |
| 77 | + data: '0' |
| 78 | + type: REG_DWORD |
| 79 | + |
| 80 | + |
| 81 | + |
| 82 | + # Windows welcome experience |
| 83 | + # https://winaero.com/disable-welcome-page-windows-10/ |
| 84 | + - !registryValue: |
| 85 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 86 | + value: 'SubscribedContent-310093Enabled' |
| 87 | + data: '0' |
| 88 | + type: REG_DWORD |
| 89 | + |
| 90 | + |
| 91 | + |
| 92 | + # Suggested content in the Settings app |
| 93 | + # https://www.tenforums.com/tutorials/100541-turn-off-suggested-content-settings-app-windows-10-a.html |
| 94 | + - !registryValue: |
| 95 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 96 | + value: 'SubscribedContent-338393Enabled' |
| 97 | + data: '0' |
| 98 | + type: REG_DWORD |
| 99 | + |
| 100 | + |
| 101 | + - !registryValue: |
| 102 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 103 | + value: 'SubscribedContent-353694Enabled' |
| 104 | + data: '0' |
| 105 | + type: REG_DWORD |
| 106 | + |
| 107 | + |
| 108 | + - !registryValue: |
| 109 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 110 | + value: 'SubscribedContent-353696Enabled' |
| 111 | + data: '0' |
| 112 | + type: REG_DWORD |
| 113 | + |
| 114 | + |
| 115 | + - !registryValue: |
| 116 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 117 | + value: 'SystemPaneSuggestionsEnabled' |
| 118 | + data: '0' |
| 119 | + type: REG_DWORD |
| 120 | + |
| 121 | + |
| 122 | + |
| 123 | + # "Get fun facts, tips, tricks, and more on your lock screen" |
| 124 | + # https://www.elevenforum.com/t/enable-or-disable-facts-tips-and-tricks-on-lock-screen-in-windows-11.7079/ |
| 125 | + - !registryValue: |
| 126 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 127 | + value: 'SubscribedContent-338387Enabled' |
| 128 | + data: '0' |
| 129 | + type: REG_DWORD |
| 130 | + |
| 131 | + |
| 132 | + - !registryValue: |
| 133 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 134 | + value: 'RotatingLockScreenOverlayEnabled' |
| 135 | + data: '0' |
| 136 | + type: REG_DWORD |
| 137 | + |
| 138 | + |
| 139 | + |
| 140 | + # Suggestions in Start |
| 141 | + # https://www.tenforums.com/tutorials/24117-turn-off-app-suggestions-start-windows-10-a.html |
| 142 | + - !registryValue: |
| 143 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 144 | + value: 'SubscribedContent-338388Enabled' |
| 145 | + data: '0' |
| 146 | + type: REG_DWORD |
| 147 | + |
| 148 | + |
| 149 | + |
| 150 | + # "Get tips, tricks, and suggestions as you use Windows" |
| 151 | + # https://www.tenforums.com/tutorials/30869-turn-off-tip-trick-suggestion-notifications-windows-10-a.html |
| 152 | + # https://winaero.com/disable-tips-about-windows-10/ |
| 153 | + - !registryValue: |
| 154 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 155 | + value: 'SubscribedContent-338389Enabled' |
| 156 | + data: '0' |
| 157 | + type: REG_DWORD |
| 158 | + |
| 159 | + |
| 160 | + - !registryValue: |
| 161 | + path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' |
| 162 | + value: 'SoftLandingEnabled' |
| 163 | + data: '0' |
| 164 | + type: REG_DWORD |
| 165 | + |
| 166 | + |
0 commit comments