Right-click your desktop. RAM drops. No UAC. No window. No disk spike.
Clears RAM usage instantly by flushing the standby list, modified page list, and working sets — the same mechanism used by tools like Ghost Spectre's ReduceMemory. Accessible from the right-click context menu on your desktop, no UAC prompt required after setup.
2026-05-03.19-32-06.mp4
| v1 — Original | v2 — Updated | |
|---|---|---|
| Context menu shortcut | ✅ | ✅ |
| Clears standby list | ✅ | ✅ |
| Clears modified page list | ✅ | ✅ |
| Clears working sets | ✅ | ✅ |
| Deletes user temp files | ✅ | ✅ (skips files in use) |
| Flushes DNS cache | ❌ | ✅ |
| UAC prompt | Every use | One-time setup only |
| CMD window on run | ✅ visible | ❌ fully hidden |
| Disk I/O spike | ✅ pagefile reset | ❌ disk untouched |
| Deletes Prefetch | ✅ (harmful) | ❌ removed |
| Stops system services | ✅ (harmful) | ❌ removed |
| Auto-detect ESL path | ❌ | ✅ |
| Uninstaller included | ❌ | ✅ |
| Paths with spaces | ❌ | ✅ |
Right-click desktop
↓
trigger.vbs → schtasks /run (silent, no window)
↓
Task Scheduler (InteractiveToken + HighestAvailable)
↓
run_hidden.vbs → cmd.exe [window = 0]
↓
EmptyStandbyList workingsets
EmptyStandbyList modifiedpagelist
EmptyStandbyList standbylist
Delete user temp files
Flush DNS cache
Why no UAC: Task Scheduler registers the task with InteractiveToken and HighestAvailable — pre-authorized at setup, no prompt needed on each run.
Why no CMD window: The context menu calls wscript.exe (windowless), which then runs cmd.exe with window parameter 0 (hidden).
Why no disk spike: Pagefile reset and Prefetch deletion from v1 are removed entirely. Only RAM is touched.
- Windows 10 or Windows 11
- Administrator account
- EmptyStandbyList — place inside
EmptyStandbyList-master\folder
ReduceMemoryAtmeg\
├── setup_install.bat ← Run this once as Admin
├── reduce_memory_atmeg.bat ← Main script (do not run manually)
├── uninstall.bat ← Clean removal
├── README.md
└── EmptyStandbyList-master\
└── EmptyStandbyList.exe ← Required before setup
- Place
EmptyStandbyList.exeinside theEmptyStandbyList-masterfolder - Right-click
setup_install.bat→ Run as administrator - Accept the UAC prompt (only time it will appear)
- Wait for all 5 steps to complete
The following files are created automatically during setup:
run_hidden.vbsandtrigger.vbs
Windows 10 — Right-click on Desktop → ReduceMemory Atmeg
Windows 11 — Right-click on Desktop → Show More Options → ReduceMemory Atmeg
Check results in Task Manager → Performance → Memory — the In Use value will decrease.
Right-click uninstall.bat → Run as administrator
Removes the Scheduled Task, context menu registry entry, and EmptyStandbyList.exe from System32.
EmptyStandbyList by @stefanpejcic
Original script by ChatGPT & Claude AI