resources/registry/WindowsUpdateTrayIcon.ps1

@{
    WindowsUpdateTrayIcon = @{
        LocalMachine = @{
            Keyname   = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings'
            Valuename = 'TrayIconVisibility'
            Type      = 'REG_DWORD'
            Data      = @{
                Enable  = 1
                Disable = 0
            }
        }
    }
}