Determining App List¶
A specific list of apps can be denied/allowed as well as allowing user to choose apps.
If the apps have been properly identified and denied, you will not be able to re-enable them from the GUI.
Get App package family names
Searching with the GUI name and AppPackage name
usually returns the
related package name. Use this AppPackage Names list can be use to find the
general package (then determine the PackageFamilyName
).
An example PackageFamilyName is Microsoft.MicrosoftEdge_8wekyb3d8bbwe
.
Get-AppPackage | Select Name,PackageFamilyName
Setting App List
Registry
A key needs to be made for each app to block. Valid values are Allow
and Deny
.
GPO policy settings can be found in the registry at
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy
but
are not modifiable.
Base Registry location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore
.
Example app privacy restriction
Example app privacy restriction using ConsentStore
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\microphone\{PACKAGE FAMILY NAME}
Value
SZ
Deny
Updated: None
References