Add Voice Activation restriction
This commit is contained in:
parent
e6e9b3afc5
commit
5de4c2ba1d
1 changed files with 33 additions and 0 deletions
33
modules.d/GPO_VoiceActivation.conf
Normal file
33
modules.d/GPO_VoiceActivation.conf
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue