Reset Windows App Privacy Settings for All Users
In Windows, Universal Windows Platform (UWP) applications require specific privacy permissions to access system capabilities such as the camera, microphone, location, and contacts. When permissions become misconfigured or need to be standardized across an entire system, you can reset universal app privacy settings for all users using the Windows Registry Editor. This guide details the exact registry paths and steps required to clear existing consents and restore default privacy prompts system-wide.
Step 1: Open Registry Editor with Administrative Privileges
- Press Windows Key + R to open the Run dialog box.
- Type
regeditand press Ctrl + Shift + Enter to open the Registry Editor as an Administrator. - Click Yes when prompted by User Account Control (UAC).
Step 2: Navigate to the Machine-Level Consent Store
Global privacy permissions that apply across all users are managed in
the CapabilityAccessManager key in
HKEY_LOCAL_MACHINE.
In the Registry Editor address bar, paste the following path and press Enter:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStoreUnder the
ConsentStorekey, you will see subkeys corresponding to individual device capabilities, including:webcam(Camera)microphone(Microphone)location(Location services)contacts(Contacts)userAccountInformation(Account info)
Step 3: Reset Global Capability Permissions
To reset the machine-wide baseline for a specific capability:
- Select the capability subkey (for example,
microphoneorwebcam). - In the right pane, locate the Value string (REG_SZ).
- Double-click Value and set its data to one of the
following states:
Prompt: Forces Windows to ask the user for permission when an app requests access.Allow: Automatically grants permission across all apps.Deny: Blocks access across all apps.
- To remove stored permissions for specific installed apps under that capability, expand the capability key and delete the individual app package subkeys listed underneath it.
Step 4: Reset Stored Permissions for All Active User Profiles
Each user account also stores individual app approvals. To clear individual user choices across all active accounts on the machine:
In the Registry Editor, navigate to:
HKEY_USERSYou will see several security identifier (SID) folders representing currently loaded user accounts (e.g.,
S-1-5-21-...).For each user SID folder, expand the path:
[User_SID]\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStoreDelete the subkeys for specific apps inside each capability folder, or delete the entire capability folder (such as
webcamormicrophone) to completely clear the user’s customized consent history. Windows will automatically recreate these keys with default values the next time an app requests access.
Step 5: Restart the System
After modifying or deleting the target registry keys, close the Registry Editor and restart your computer to apply the changes across all user sessions. When users launch universal apps, they will be prompted again to grant access to system hardware and personal data.