How to Hide Lock Screen Notifications in Regedit
Managing lock screen notification privacy in Windows can be handled directly through the Windows Registry Editor. This guide details the specific registry keys and DWORD values used to hide or display toast notifications on the lock screen for the current user or across the entire system.
User-Level Registry Setting
The primary registry entry controlling whether notifications appear
above the lock screen for the logged-in user is located in the
CurrentVersion\Notifications\Settings path.
- Registry Path:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings - Value Name:
NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK - Value Type:
REG_DWORD - Value Data:
0= Hide notifications on the lock screen1= Show notifications on the lock screen
How to Apply the Setting:
Press
Windows Key + R, typeregedit, and press Enter.Navigate to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\SettingsLocate the DWORD named
NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK. If it does not exist, right-click an empty area, select New > DWORD (32-bit) Value, and name it accordingly.Double-click the value and set the Value data to
0to hide notifications, or1to allow them.Click OK and restart Windows Explorer or sign out for changes to take effect.
Policy-Level Registry Setting (System-Wide)
To enforce this setting across the entire machine or prevent users from changing lock screen notification preferences via the Settings app, you can use the policy-based registry key.
- Registry Path:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System - Value Name:
NoToastApplicationNotificationOnLockScreen - Value Type:
REG_DWORD - Value Data:
1= Disable and hide all toast notifications on the lock screen0(or deleted) = Allow notifications on the lock screen
How to Apply the Policy:
Open the Registry Editor (
regedit).Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\SystemRight-click the
Systemkey, choose New > DWORD (32-bit) Value, and name itNoToastApplicationNotificationOnLockScreen.Double-click the newly created entry and set its value to
1.Click OK and restart your computer.