🖥️ Batch (CMD)

Disable Snap Assist Suggestions (Batch)

Stops Windows from suggesting other windows to snap next to one you just moved. Applies the tweak via reg.exe.

By WindowsScripting.com · 581 B
SetDisableSnapAssist.bat
@echo off
:: ============================================================
:: SetDisableSnapAssist.bat
::
:: Disable Snap Assist Suggestions.
:: Stops Windows from suggesting other windows to snap next to one you just moved.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SnapAssist" /t REG_DWORD /d "0" /f

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