🖥️ Batch (CMD)
Disable Storage Sense Low-Space Notifications (Batch)
Silences low-disk-space notifications from Storage Sense. Applies the tweak via reg.exe.
SetDisableStorageSenseNotifications.bat
@echo off
:: ============================================================
:: SetDisableStorageSenseNotifications.bat
::
:: Disable Storage Sense Low-Space Notifications.
:: Silences low-disk-space notifications from Storage Sense.
:: ============================================================
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" /v "512" /t REG_DWORD /d "0" /f
if %ERRORLEVEL% EQU 0 (
echo Disable Storage Sense Low-Space Notifications applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause