Browse Source

Prevent "Suggested Applications" returning

Addition of Registry key to disable "Suggested Applications". This wont remove existing suggested applications, however it will prevent new suggestions and the return of removed suggestions.
pull/89/head
Kye Davey 8 years ago
committed by GitHub
parent
commit
f8439e861a
  1. 5
      scripts/remove-default-apps.ps1

5
scripts/remove-default-apps.ps1

@ -3,6 +3,7 @@
# to remove certain Apps comment out the corresponding lines below.
Import-Module -DisableNameChecking $PSScriptRoot\..\lib\take-own.psm1
Import-Module -DisableNameChecking $PSScriptRoot\..\lib\force-mkdir.psm1
echo "Elevating privileges for this process"
do {} until (Elevate-Privileges SeTakeOwnershipPrivilege)
@ -95,3 +96,7 @@ foreach ($app in $apps) {
where DisplayName -EQ $app |
Remove-AppxProvisionedPackage -Online
}
# Prevents "Suggested Applications" returning
force-mkdir "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Cloud Content"
sp "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Cloud Content" "DisableWindowsConsumerFeatures" 1

Loading…
Cancel
Save