Disable SysMain (Superfetch): when it helps and when it is cargo cult
SHORT ANSWER
SysMain, formerly Superfetch, is a Windows service that preloads frequently used data into spare RAM. Disabling it stops that background disk and CPU activity. On an SSD with 16 GB or more it is usually neutral to mildly positive for frame-time consistency; on a mechanical drive or a low-RAM machine, disabling it can make launches noticeably slower. This is one of the most over-recommended tweaks on the internet.
Exactly what it changes
Read straight from the application source. If a tool will not show you this, it is asking for trust it has not earned.
SysMain — SysMain (formerly Superfetch)
Set to Disabled so it does not start with Windows.
What it does
SysMain watches which applications you launch and pre-loads parts of them into memory that would otherwise sit unused, so they start faster.
It does this with background disk reads. On a mechanical drive those reads compete directly with whatever your game is streaming, which is where the anti-stutter argument comes from.
When it helps
- Removes background disk activity that can cause hitching on slower drives.
- Frees a small amount of CPU and RAM on machines that are genuinely constrained.
- Occasionally fixes a specific pathological case where SysMain thrashes on a failing drive.
When it hurts
- On a modern NVMe SSD the benefit is usually within measurement noise. Do not expect FPS from this.
- Application and game launch times can get slower, since nothing is pre-loaded any more.
- On systems with limited RAM, Windows loses a memory-management heuristic that was actually helping.
How to undo it
Set the SysMain service back to Automatic and start it, from services.msc or with `sc config SysMain start=auto`. Frozen Tweaks restores the original start type rather than assuming Automatic.
Verdict
Honest answer: minor. Worth doing if you are on a mechanical drive or chasing stutter, largely pointless on a fast NVMe system with plenty of RAM. It is not the FPS tweak it is often presented as.
Related guides
Everything else we change is listed too
All 127 optimizations are published in full, with what each one does and which are free. You can apply any of them by hand using pages like this one — the tool exists to do it in one click and put it back after every Windows update.