Prevent Domain Biometric Logon via Regedit
This guide outlines how to prevent users from using Windows Hello
biometric authentication—such as facial recognition or fingerprint
scanning—to log into enterprise domain accounts. By configuring specific
policy values within the Windows Registry Editor (regedit),
administrators can enforce traditional password or smart card
authentication methods across domain-joined machines without entirely
disabling local biometric capabilities.
Registry Configuration Steps
To disable biometric logons for enterprise domain accounts, modify the system registry using the steps below:
1. Open the Registry Editor
- Press
Windows Key + Rto open the Run dialog. - Type
regeditand press Enter. - Select Yes if prompted by User Account Control (UAC) to run with administrative privileges.
2. Navigate to the Biometrics Policy Key
In the Registry Editor address bar, navigate to the following path:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Biometrics\Credential Provider
Note: If the Biometrics or
Credential Provider subkeys do not exist, right-click on
the parent folder, select New > Key, and name the
key accordingly.
3. Create or Modify the DomainLogon DWORD Value
- Right-click on the
Credential Providerkey in the left pane or the empty space in the right pane. - Select New > DWORD (32-bit) Value.
- Name the new value:
DomainLogon - Double-click
DomainLogonto modify its properties. - Set the Value data field to
0. - Ensure the Base is set to
Hexadecimal (or Decimal, as
0is the same in both). - Click OK.
4. Apply Changes
- Close the Registry Editor.
- Restart the computer or restart the Windows Biometric
Service via
services.mscfor the policy to take effect immediately.
Fast Configuration via Command Prompt (Alternative)
To apply this registry setting quickly across managed machines without manually navigating the Registry Editor, run the following command in an elevated Command Prompt:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Biometrics\Credential Provider" /v DomainLogon /t REG_DWORD /d 0 /fHow It Works
- Value Data
0: Disables domain users from logging on using biometrics. - Value Data
1: Enables domain users to log on using biometrics (Default behavior if biometric features are enabled).