resources/registry/WindowsSecurityAllNotifications.ps1

@{
    WindowsSecurityAllNotifications = @{
        LocalMachine = @{
            Keyname   = 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Notifications'
            Valuename = 'DisableNotifications'
            Type      = 'REG_DWORD'
            Data      = @{
                Enable  = 0
                Disable = 1
            }
        }
    }
}