📜 VBScript (WSH)

Disable Windows Welcome Experience (VBScript)

Disables the full-screen "suggested content" tips that appear after updates. Applies the tweak via WScript.Shell.RegWrite.

By WindowsScripting.com · 781 B
SetDisableWindowsWelcomeExperience.vbs
' ============================================================
' SetDisableWindowsWelcomeExperience.vbs
'
' Disable Windows Welcome Experience.
' Disables the full-screen "suggested content" tips that appear after updates.
'
' Usage: cscript SetDisableWindowsWelcomeExperience.vbs
' ============================================================

Option Explicit

Dim objShell
Set objShell = CreateObject("WScript.Shell")

On Error Resume Next
objShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement\ScoobeSystemSettingEnabled", 0, "REG_DWORD"

If Err.Number = 0 Then
    WScript.Echo "Disable Windows Welcome Experience applied."
Else
    WScript.Echo "Failed to apply tweak (Error " & Err.Number & ": " & Err.Description & ")"
End If
On Error Goto 0