🖥️ Batch (CMD)

Check "Disable Storage Sense Low-Space Notifications" Status (Batch)

Uses reg query to check the current value behind the "Disable Storage Sense Low-Space Notifications" tweak.

By WindowsScripting.com · 504 B
CheckDisableStorageSenseNotificationsStatus.bat
@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