Disable Windows Firewall notifications via registry

How to disable Windows Firewall notifications via registry?

enter image description here


You can either change this setting directly...

  • In HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile set REG_DWORD value DisableNotifications to 1
  • In HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\PrivateProfile set REG_DWORD value DisableNotifications to 1
  • In HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\PublicProfile set REG_DWORD value DisableNotifications to 1

...or set it as policy...:

  • In HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\DomainProfile set REG_DWORD value DisableNotifications to 1
  • In HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\PrivateProfile set REG_DWORD value DisableNotifications to 1
  • In HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\WindowsFirewall\PublicProfile set REG_DWORD value DisableNotifications to 1