Required Files: None
This updates the registry key so that Suggested apps in windows 10 are disabled
$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" $Name = "DisableWindowsConsumerFeatures " $value = "1" IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force | Out-Null New-ItemProperty -Path $registryPath -Name $name -Value $value `-PropertyType DWORD -Force | Out-Null } ELSE { New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null } |