This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
win10-privacy-script/modules.d/GPO_CloudContent.conf

35 lines
1.3 KiB
Text

{
"Name" : "CloudContent (GPO)",
"Description" : "This module Desactivate somes Windows suggestionlike GPO does.",
"actions" :
[
{
"_comment" : "Disable third party suggestion (for current user)",
"action" : "AddRegKey",
"path" : "HKCU:\\Software\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableThirdPartysuggestions",
"value" : "1"
},
{
"_comment" : "Disable Windows Spotlight (for current user)",
"action" : "AddRegKey",
"path" : "HKCU:\\Software\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableWindowsSpotlightFeatures",
"value" : "1"
},
{
"_comment" : "Disable third party suggestion (for user template hive)",
"action" : "AddRegKey",
"path" : "HKU:\\Default\\Software\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableThirdPartysuggestions",
"value" : "1"
},
{
"_comment" : "Disable Windows Spotlight (for user template hive)",
"action" : "AddRegKey",
"path" : "HKU:\\Default\\Software\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableWindowsSpotlightFeatures",
"value" : "1"
}
]
}