🖥️ Batch (CMD)

Check "Disable Snap Assist Suggestions" Status (Batch)

Uses reg query to check the current value behind the "Disable Snap Assist Suggestions" tweak.

By WindowsScripting.com · 469 B
CheckDisableSnapAssistStatus.bat
@echo off
:: ============================================================
:: CheckDisableSnapAssistStatus.bat
::
:: Checks whether "Disable Snap Assist Suggestions" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SnapAssist" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'SnapAssist' is not set (using the Windows default^).
)
pause