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_WindowsDefender.conf
Normal file
35
modules.d/GPO_WindowsDefender.conf
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue