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_SettingSync.conf

35 lines
1.3 KiB
Text

{
"name" : "Setting Sync (GPO)",
"description" : "This module desactivate Setting sync between devices like GPO does.",
"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"
}
]
}