Skip to content

Instantly share code, notes, and snippets.

@te-online
Last active May 29, 2018 20:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save te-online/4f74c98cdd3e14f44234d465ccd2d1f0 to your computer and use it in GitHub Desktop.
Save te-online/4f74c98cdd3e14f44234d465ccd2d1f0 to your computer and use it in GitHub Desktop.
MDT Script Series: Disable automated install of unwanted crap apps in Windows 10 (only works in Enterprise and Education versions)
# NOTE: This will only work in Windows 10 Editions Enterprise and Education. Other versions don't support disabling Consumer Experience as of now (16 March 2017).
# Disable Consumer Experience
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /f /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /f /v DisableSoftLanding /t REG_DWORD /d 1
reg add "HKLM\Software\Policies\Microsoft\WindowsInkWorkspace" /f /v AllowSuggestedAppsInWindowsInkWorkspace /t REG_DWORD /d 0
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /f /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /f /v PreInstalledAppsEnabled /t REG_DWORD /d 0
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /f /v SoftLandingEnabled /t REG_DWORD /d 0
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /f /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment