Add Voice Activation restriction

This commit is contained in:
Yorick Barbanneau 2020-03-27 11:09:21 +01:00
parent e6e9b3afc5
commit 5de4c2ba1d

View file

@ -0,0 +1,33 @@
{
"name" : "Account Info (GPO)",
"description" : "This module desactivate Account Info access for third party Apps like GPO did.",
"actions" :
[
{
"_comment" : "This is the principal reg key controlled by GPO",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy",
"key" : "LetAppsActivateWithVoice",
"value" : "2"
},
{
"_comment" : "The 3 bottom keys seems to be some kind of ACL for App right",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy",
"key" : "LetAppsActivateWithVoice_UserInControlOfTheseApps",
"type" : "MultiString"
},
{
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy",
"key" : "LetAppsActivateWithVoice_ForceAllowTheseApps",
"type" : "MultiString"
},
{
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy",
"key" : "LetAppsActivateWithVoice_ForceDenyTheseApps",
"type" : "MultiString"
}
]
}