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

56 lines
No EOL
2.1 KiB
Text

{
"name" : "Error Reporting (GPO)",
"description" : "This module desactivate some error Reporting function like GPO does.",
"actions" :
[
{
"_comment" : "Disable error Reporting to Microsoft",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting",
"key" : "Disabled",
"value" : "1"
},
{
"_comment" : "Do not allow operating system memory dump sent to Microsoft",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting",
"key" : "AutoApproveOSDumps",
"value" : "0"
},
{
"_comment" : "Do not sent additional dada to Microsoft when reporting",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting",
"key" : "DontSendAdditionalData",
"value" : "1"
},
{
"_comment" : "Disable Windows Error Reporting ",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\PCHealth\\ErrorReporting",
"key" : "DoReport",
"value" : "0"
},
{
"_comment" : "Disable WER (Not a GPO rule)",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\UnattendSettings\\Windows Error Reporting",
"key" : "Disabled",
"value" : "1"
},
{
"_comment" : "Disable WMR (Not a GPO rule)",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting\\WMR",
"key" : "Disabled",
"value" : "1"
},
{
"_comment" : "Do not consent Error Reporting (not a GPO rule) ",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting\\consent",
"key" : "DefaultConsent",
"value" : "0"
}
]
}