@echo off
:: ============================================================
:: CheckDisableStorageSenseNotificationsStatus.bat
::
:: Checks whether "Disable Storage Sense Low-Space Notifications" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" /v "512" 2>nul

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