Rewrite modules (untested)
This commit is contained in:
parent
b3d3ee6403
commit
eba57e6c8a
53 changed files with 1288 additions and 394 deletions
35
modules.d/GPO_CloudContent.conf
Normal file
35
modules.d/GPO_CloudContent.conf
Normal 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"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
Reference in a new issue