📊 VBA (Excel)
Apply Disable Windows Tips & Suggestions (VBA)
Stops Windows from showing tips and suggestions notifications. Applied via WScript.Shell.RegWrite from VBA.
DisableWindowsTipsRegSet.bas
Attribute VB_Name = "DisableWindowsTipsRegSet"
Option Explicit
Public Sub DisableWindowsTipsRegSet()
Dim wsh As Object
Dim regPath As String
Set wsh = CreateObject("WScript.Shell")
regPath = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SoftLandingEnabled"
wsh.RegWrite regPath, 0, "REG_DWORD"
MsgBox "Disable Windows Tips & Suggestions applied." & vbCrLf & regPath, vbInformation
End Sub