Disable Windows Firewall notifications via registry

0

How to disable Windows Firewall notifications via registry?

enter image description here

Clacers

Posted 2017-07-06T15:00:18.143

Reputation: 253

Answers

0

It is as simple as the following steps:

  1. Click Start, click Run, type regedit, and then press ENTER

  2. Locate the following subkey:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

  3. Right-click the right side pane, create a new DWORD value, and then name it EnableBalloonTips.

  4. Double-click EnableBalloonTips, and then give it a value of 0.

  5. Close Registry Editor

  6. Log off Windows, and then log back on.

Source: How do I disable balloon tips in the notification area in Windows XP or Vista?

Ramhound

Posted 2017-07-06T15:00:18.143

Reputation: 28 517

-1

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "EnableBalloonTips" /t REG_DWORD /d 0 /f

Ken Manseau

Posted 2017-07-06T15:00:18.143

Reputation: 1