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,42 @@
{
"Name" : " Diagnostic Data (GPO)",
"Description" : "This module try to disable diagnostic tracking like GPO does.",
"actions" :
[
{
"_comment" : "Do not show feedback notification",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
"key" : "DoNotShowFeedbackNotifications",
"value" : "1"
},
{
"_comment" : "Disable Telemetry, 1 for minimum information leak (Home and Pro edition) and 0 for total disable (Entreprise only)",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
"key" : "AllowTelemetry",
"value" : "1"
},
{
"_comment" : "Disable 'Use diagnostic data for personnalized experience",
"action" : "AddRegKey",
"path" : "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableTailoredExperiencesWithDiagnosticData",
"value" : "1"
},
{
"_comment" : "Disable App compatibility telemetry",
"action" : "AddRegKey",
"path" : "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppCompat",
"key" : "AITEnable",
"value" : "1"
},
{
"_comment" : "Disable pre-version functionnality",
"action" : "AddRegKey",
"path" : "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
"key" : "EnableConfigFlighting",
"value" : "1"
}
]
}