🖥️ Batch (CMD)

Disable Windows Tips & Suggestions (Batch)

Stops Windows from showing tips and suggestions notifications. Applies the tweak via reg.exe.

By WindowsScripting.com · 584 B
SetDisableWindowsTips.bat
@echo off
:: ============================================================
:: SetDisableWindowsTips.bat
::
:: Disable Windows Tips & Suggestions.
:: Stops Windows from showing tips and suggestions notifications.
:: ============================================================

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

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