Control Windows Taskbar App Badges via Registry
This guide explains how to control taskbar notification badges on Windows application icons by modifying the Windows Registry. You will learn the exact registry key, value name, and value data required to enable or disable these badge counters, along with the step-by-step process to apply the changes without navigating through the standard Windows Settings interface.
The Registry Value
Windows controls the display of notification counters (badges) on
taskbar buttons using the TaskbarBadges
DWORD value located in the user’s Explorer preferences key.
- Registry Key Path:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced - Value Name:
TaskbarBadges - Value Type:
REG_DWORD(32-bit DWORD) - Value Data:
1= Enabled (Show badges on taskbar apps)0= Disabled (Hide badges on taskbar apps)
Step-by-Step Configuration via Regedit
Press Win + R, type
regedit, and press Enter to launch the Registry Editor.In the address bar at the top, navigate to the following path:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AdvancedLook for the DWORD (32-bit) value named
TaskbarBadgesin the right-hand pane.- If
TaskbarBadgesdoes not exist, right-click an empty space in the right pane, select New > DWORD (32-bit) Value, and name itTaskbarBadges.
- If
Double-click
TaskbarBadgesto open its edit window.Set the Value data field to:
0to turn off notification badges.1to turn on notification badges.
Ensure the Base is set to Hexadecimal, then click OK.
Applying the Changes
For the registry change to take effect immediately without restarting your computer, restart the Windows Explorer process:
- Press Ctrl + Shift + Esc to open the Task Manager.
- Under the Processes tab, locate Windows Explorer.
- Right-click Windows Explorer and select Restart.
Alternatively, you can apply the change via Command Prompt (Admin) with the following commands:
To Disable Badges:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarBadges /t REG_DWORD /d 0 /f taskkill /f /im explorer.exe && start explorer.exeTo Enable Badges:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarBadges /t REG_DWORD /d 1 /f taskkill /f /im explorer.exe && start explorer.exe