Skip to content
Follow
Windows

How to Enable or Disable Windows Security Account Protection Notifications

Richard
Written by
Richard
Mar 28, 2026 Updated Jul 10, 2026 3 min read
How to Enable or Disable Windows Security Account Protection Notifications
How to Enable or Disable Windows Security Account Protection Notifications

Turning account protection notifications on or off in Windows Security helps cut down on desktop distractions. These notifications keep you informed about your account’s safety.

⚡ Quick Answer

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 notifications signal important account issues, such as problems with Windows Hello sign-in or Dynamic Lock. These security alerts help guard against threats, but the constant pop-ups also cause interruptions. Turning off these notifications reduces distractions during daily workflows.

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

Managing account protection notifications happens right inside the app itself. Open Windows Security, go to Settings, and click ‘Manage notifications’ to control these alerts.
  1. Open Windows Security. Windows Security
  2. Click on Settings.
  3. Click on the Manage notifications link under Notifications.
  4. 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.
  5. You can now close Windows Security.
windows 11 windows security app settings button
windows 11 windows security app settings button
Windows Security settings manage notifications link location
Windows Security settings manage notifications link location
Get account protection notifications toggle options Windows Security
Get account protection notifications toggle options Windows Security

Option 2Using Registry (Advanced)

⚠️ Admin privileges required

Open the Terminal app as administrator, then run the commands below.

Turn ON All Account Protection Notifications

Running a command in the Registry Editor (a tool for modifying advanced system settings) ensures you receive every account protection alert. This configuration enables notifications for both general account protection and Windows Hello.

🗝️Registry
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

Silencing all Windows Security account protection notifications requires a different command in the Registry Editor. Executing this code turns off general account protection alerts and specific Windows Hello notifications.

🗝️Registry
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

Targeted adjustments work well for specific Windows Security notifications, such as those concerning Windows Hello problems. This approach permits turning off alerts for Windows Hello sign-in issues while leaving other account protection features active.

🗝️Registry
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

🗝️Registry
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

Controlling Windows Security notifications for problems with Dynamic Lock relies on a specific command. This configuration dictates whether alerts appear when the computer fails to lock automatically upon stepping away with a paired phone.

🗝️Registry
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

🗝️Registry
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

Controlling Windows Security notifications relies on two main approaches: the Settings menu within the app or executing commands in the Registry Editor. Both methods grant full control over account protection alerts.

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?

Tags: #Windows 11
Was this helpful?
Richard

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.

📚 Related Tutorials

How to Enable or Disable Windows Security Notifications in Windows 11
Windows How to Enable or Disable Windows Security Notifications in Windows 11
How to Enable or Disable Windows 11 Notifications
Windows How to Enable or Disable Windows 11 Notifications
How to Disable Lock Screen Notifications in Windows 11
Windows How to Disable Lock Screen Notifications in Windows 11
How to Reset Windows Security App in Windows 11
Windows How to Reset Windows Security App in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *