Rewrite modules (untested)
This commit is contained in:
parent
b3d3ee6403
commit
eba57e6c8a
53 changed files with 1288 additions and 394 deletions
36
modules.d/GPO_InputSpeechInk.conf
Normal file
36
modules.d/GPO_InputSpeechInk.conf
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"Name" : "Input Speech Ink (GPO)",
|
||||
"Description" : "This module desactivate Input personalization, speech and ink recognition like GPO did.",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue