Attribute VB_Name = "DisableWindowsTipsRegCheck"
Option Explicit

Public Sub DisableWindowsTipsRegCheck()
    Dim wsh As Object
    Dim regPath As String
    Dim value As Variant

    Set wsh = CreateObject("WScript.Shell")
    regPath = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SoftLandingEnabled"

    On Error Resume Next
    value = wsh.RegRead(regPath)
    On Error GoTo 0

    If IsEmpty(value) Then
        MsgBox "Value not set:" & vbCrLf & regPath, vbExclamation, "Disable Windows Tips & Suggestions"
    Else
        MsgBox "Disable Windows Tips & Suggestions" & vbCrLf & regPath & " = " & value, vbInformation
    End If
End Sub