🖥️ Batch (CMD)

Disable Windows Welcome Experience (Batch)

Disables the full-screen "suggested content" tips that appear after updates. Applies the tweak via reg.exe.

By WindowsScripting.com · 618 B
SetDisableWindowsWelcomeExperience.bat
@echo off
:: ============================================================
:: SetDisableWindowsWelcomeExperience.bat
::
:: Disable Windows Welcome Experience.
:: Disables the full-screen "suggested content" tips that appear after updates.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" /v "ScoobeSystemSettingEnabled" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Windows Welcome Experience applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause