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

36 lines
1.2 KiB
Text

{
"name" : "Input Speech Ink (GPO)",
"description" : "This module desactivate Input personalization, speech and ink recognition like GPO does.",
"actions" :
[
{
"_comment" : "Desactivate text learning",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\InputPersonalization",
"key" : "RestrictImplicitTextCollection",
"value" : "1"
},
{
"_comment" : "Desactivate ink learning",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\InputPersonalization",
"key" : "RestrictImplicitInkCollection",
"value" : "1"
},
{
"_comment" : "Desactivate input personalization",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\InputPersonalization",
"key" : "AllowInputPersonnalization",
"value" : "0"
},
{
"_comment" : "Desactivate voice data automatic updates",
"action" : "AddRegKey",
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Speech",
"key" : "AllowSpeechModelUpdate",
"value" : "0"
}
]
}