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_SettingSync.conf
Normal file
35
modules.d/GPO_SettingSync.conf
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"Name" : "Setting Sync (GPO)",
|
||||
"Description" : "This module desactivate Setting sync between devices like GPO did.",
|
||||
"actions" :
|
||||
[
|
||||
{
|
||||
"_comment" : "Disable Setting Sync",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\SettingSync",
|
||||
"key" : "DisableSettingSync",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable Possibility for user to reactivate setting sync",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\SettingSync",
|
||||
"key" : "DisableSettingSyncUserOverride",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable Setting Sync for third party Apps",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\SettingSync",
|
||||
"key" : "DisableApplicationSettingSync",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable Possibility for user to reactivate setting sync for third party Apps",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\SettingSync",
|
||||
"key" : "DisableApplicationSettingSyncUserOverride",
|
||||
"value" : "1"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue