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

70 lines
No EOL
2.7 KiB
Text

{
"name" : "Cortana and Windows Search (GPO)",
"description" : "This module Desactivate Cortana and some Windows Search functionnality like GPO does.",
"actions" :
[
{
"_comment" : "Desactivate location access for Cortana",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "AllowSearchToUseLocation",
"value" : "0"
},
{
"_comment" : "Disable Web Search from Cortana",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "DisableWebSearch",
"value" : "1"
},
{
"_comment" : "Disable Web Search result from Windows Search",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "ConnectedSearchUseWeb",
"value" : "0"
},
{
"_comment" : "Do not Search over the Web with limited connections",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "ConnectedSearchUseWebOverMeteredConnections",
"value" : "0"
},
{
"_comment" : "Disable Cortana",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "AllowCortana",
"value" : "0"
},
{
"_comment" : "Define which informations are sent to Web Search (anonymous informations)",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "ConnectedSearchPrivacy",
"value" : "3"
},
{
"_comment" : "Disable SafeSearch for Search",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "ConnectedSearchSafeSearch",
"value" : "3"
},
{
"_comment" : "Disable encrypted file indexation",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search\\CurrentPolicies",
"key" : "AllowIndexingEncryptedStoresOrItems",
"value" : "0"
},
{
"_comment" : "Disable Cortana on lock screen",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\Windows Search",
"key" : "AllowCortanaAboveLock",
"value" : "0"
}
]
}