📊 VBA (Excel)

Apply Disable Windows Welcome Experience (VBA)

Disables the full-screen "suggested content" tips that appear after updates. Applied via WScript.Shell.RegWrite from VBA.

By WindowsScripting.com · 487 B
DisableWindowsWelcomeExperienceRegSet.bas
Attribute VB_Name = "DisableWindowsWelcomeExperienceRegSet"
Option Explicit

Public Sub DisableWindowsWelcomeExperienceRegSet()
    Dim wsh As Object
    Dim regPath As String

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

    wsh.RegWrite regPath, 0, "REG_DWORD"

    MsgBox "Disable Windows Welcome Experience applied." & vbCrLf & regPath, vbInformation
End Sub