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/DisableSmartScreen.conf

22 lines
No EOL
563 B
Text

{
"name" : "Disable Smartscreen",
"description" : "Disable Smartscreen protection for Edge / IE",
"actions" : [
{
"action" : "AddRegKey",
"path" : "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppHost",
"key" : "EnableWebContentEvaluation",
"value" : "0",
"type" : ""
},
{
"_comment" : "EXPERIMENTAL Disable Smartscreen for new created Users",
"action" : "AddRegKey",
"path" : "HKU:\\Default\\Microsoft\\Windows\\CurrentVersion\\AppHost",
"key" : "EnableWebContentEvaluation",
"value" : "0",
"type" : ""
}
]
}