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,56 @@
{
"Name" : "Privacy (GPO)",
"Description" : "This module set some privati life settings like GPO does.",
"actions" :
[
{
"_comment" : "Disable hand writing share",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\TabletPC",
"action" : "AddRegKey",
"key" : "PreventHandwritingDataSharing",
"value" : "1"
},
{
"_comment" : "Disable hand writing error reporting",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\HandwritingErrorReports",
"key" : "PreventHandwritingErrorReports",
"value" : "1"
},
{
"_comment" : "Disable Inventory Collector",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppCompat",
"key" : "DisableInventory",
"value" : "1"
},
{
"_comment" : "Disable camera on lock screen",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Personalization",
"key" : "NoLockScreenCamera",
"value" : "1"
},
{
"_comment" : "Disable notification for tile, application and Lockscreen (non GPO key)(current user)",
"action" : "AddRegKey",
"path" : "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
"key" : "ToastEnabled",
"value" : "0"
},
{
"_comment" : "Disable notification for tiles, applications and lockscreen (non GPO key)(user template hive)",
"action" : "AddRegKey",
"path" : "HKU:\\Default\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
"key" : "ToastEnabled",
"value" : "0"
},
{
"_comment" : "Disable user experience amelioration program ",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\SQMClient\\Windows",
"key" : "CEIPEnabled",
"value" : "0"
}
]
}