đź“„ JScript (WSH)

Disable Storage Sense Low-Space Notifications (JScript)

Silences low-disk-space notifications from Storage Sense. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).

By WindowsScripting.com · 697 B
SetDisableStorageSenseNotifications.js
// ============================================================
// SetDisableStorageSenseNotifications.js
//
// Disable Storage Sense Low-Space Notifications.
// Silences low-disk-space notifications from Storage Sense.
//
// Usage: cscript SetDisableStorageSenseNotifications.js
// ============================================================

var objShell = WScript.CreateObject("WScript.Shell");

try {
    objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\\512", 0, "REG_DWORD");
    WScript.Echo("Disable Storage Sense Low-Space Notifications applied.");
} catch (e) {
    WScript.Echo("Failed to apply tweak: " + e.description);
}