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,35 @@
{
"Name" : "Windows Defender (GPO)",
"Description" : "This module Desactivate somes Windows Defender functionnallity like GPO does.",
"actions" :
[
{
"_comment" : "Disable Spynet Reporting",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Spynet",
"key" : "SpyNetReporting",
"value" : "0"
},
{
"_comment" : "Disable sample submission to Microsoft",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Spynet",
"key" : "SubmitSamplesConsent",
"value" : "2"
},
{
"_comment" : "Do not report infection informations to Microsoft",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\MRT",
"key" : "DontReportInfectionInformation",
"value" : "1"
},
{
"_comment" : "Do not allow setting override for Spynet reporting",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Spynet",
"key" : "LocalSettingOverrideSpynetReporting",
"value" : "0"
}
]
}