How to Enable or Disable Windows Security Account Protection Notifications
This tutorial shows you how to turn account protection notifications on or off in Windows Security. These notifications help you stay informed about your account’s safety.
Open Windows Security, click Settings, then Manage notifications. You can disable all account protection notifications or toggle specific alerts for Windows Hello and Dynamic Lock.
Why Would You Want to Do This?
Windows Security can send you notifications about problems with your account. It alerts you to issues with Windows Hello, like problems with facial recognition or fingerprint login. It also flags issues with Dynamic Lock, which automatically locks your screen when you step away from your computer. Sometimes you might want these notifications. Other times, they might get annoying and you’ll want to turn them off.
What Notifications Can You Control?
- Problems with Windows Hello
- Problems with Dynamic lock
Reference: Windows Security App Settings – Microsoft Support
Learn how to configure settings for the Windows Security app.
Option 1Using Windows Security Settings
Turn On or Off Account Protection Notifications in Windows Security
- Open Windows Security. Windows Security
- Click on Settings.
- Click on the Manage notifications link under Notifications.
- Choose what you want to do:
- Turn off Get account protection notifications completely.
- Turn on Get account protection notifications (this is the default), then check or uncheck Problems with Windows Hello and/or Problems with Dynamic lock.
- You can now close Windows Security.


Option 2Using Registry (Advanced)
⚠️ Admin privileges required
Open the Terminal app as administrator and run the commands below.
Turn ON All Account Protection Notifications
To turn ON all account protection notifications (this is the default):
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableWindowsHelloNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableDynamiclockNotifications /t REG_DWORD /d 0 /f
Turn OFF All Account Protection Notifications
To turn OFF all account protection notifications:
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableWindowsHelloNotifications /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableDynamiclockNotifications /t REG_DWORD /d 1 /f
Turn On or Off Specific Account Protection Notifications
For Windows Hello notifications only:
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableWindowsHelloNotifications /t REG_DWORD /d 0 /f
OR
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableWindowsHelloNotifications /t REG_DWORD /d 1 /f
Turn On or Off “Problems with Dynamic lock” Notifications
For “Problems with Dynamic lock” notifications:
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableDynamiclockNotifications /t REG_DWORD /d 0 /f
OR
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableNotifications /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows Defender Security Center\Account protection" /v DisableDynamiclockNotifications /t REG_DWORD /d 1 /f
Summary
You now know two ways to control your account protection notifications in Windows Security. The most accessible way is through the Settings menu within Windows Security itself. If you prefer using commands, you can use the Registry Editor method, but remember you’ll need administrator access. Choose whichever method works best for you, and you can turn these helpful notifications on or off anytime you want.
Should I disable Windows Security notifications?
Is hiding the Windows Security notification icon recommended for kiosks? Yes, disabling the Windows Security icon is considered a best practice for kiosk and shared devices.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!