Forum Discussion
Remove post-auth confirmation for Windows Hello popup?
Hi all,
I’m wondering if there’s a tweak or setting in Windows that can automatically dismiss the Windows Hello prompt window after a successful scan (facial or fingerprint).
Right now, even after Hello successfully verifies me, I still have to manually click “OK” to continue — which kind of defeats the “Hello” part of Windows Hello. 😅
I’ve attached a screenshot of the window I’m referring to (below):
It would be great if this behaved more like the lock screen, where once Hello verifies you, it just disappears and logs you in.
Anyone know if this can be done, or if there's a registry/GPO/hidden setting to streamline this?
Thanks!
1 Reply
- ChuckSchumerIron Contributor
Option 1: Group Policy Modification (Enterprise/Professional)
Press Win+R and type gpedit.mscNavigate to:
plaintext
Computer Configuration > Administrative Templates > Windows Components > Windows Hello for Business
Enable the policy:plaintext
“Turn off login success notifications” → Enabled
Option 2: Registry Editor (all versions)
powershell
# Run with administrator privileges:
reg add “HKLM\SOFTWARE\Policies\Microsoft\PassportForWork” /v “DisablePostLogonAuthenticationDelay” /t REG_DWORD /d 1 /f
Effective Conditions:AuthHost service needs to be restarted:
cmd. net stop AuthHost &&
net stop AuthHost && net start AuthHost
Option 3: Service downgrade
Open the Services Manager (services.msc)Find:
plaintext
Windows Hello Biometric Service
Startup type changed to “Manual”
Note: It will slow down the authentication speed