Rewrite modules (untested)

This commit is contained in:
Yorick Barbanneau 2018-03-25 16:15:10 +02:00
parent b3d3ee6403
commit eba57e6c8a
53 changed files with 1288 additions and 394 deletions

View file

@ -0,0 +1,35 @@
{
"Name" : "CloudContent (GPO)",
"Description" : "This module Desactivate somes Windows like 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"
}
]
}