Disable Windows Firewall notifications via registry
Sophia Terry
How to disable Windows Firewall notifications via registry?
03 Answers
How to disable Windows Firewall notifications via registry?
You can disable taskbar balloon notifications by doing the following steps:
Click Start, click Run, type regedit, and then press ENTER
Locate the following subkey:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Right-click the right side pane, create a new DWORD value, and then name it EnableBalloonTips.
Double-click EnableBalloonTips, and then give it a value of 0.
Close Registry Editor
Log off Windows, and then log back on.
Source: How do I disable balloon tips in the notification area in Windows XP or Vista?
0You can either change this setting directly...
- In
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfilesetREG_DWORDvalueDisableNotificationsto1 - In
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\PrivateProfilesetREG_DWORDvalueDisableNotificationsto1 - In
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\PublicProfilesetREG_DWORDvalueDisableNotificationsto1
...or set it as policy...:
- In
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\DomainProfilesetREG_DWORDvalueDisableNotificationsto1 - In
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\PrivateProfilesetREG_DWORDvalueDisableNotificationsto1 - In
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\PublicProfilesetREG_DWORDvalueDisableNotificationsto1
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "EnableBalloonTips" /t REG_DWORD /d 0 /f
0