August 13, 2026 · 8 min read
How to speed up an older laptop
An older laptop is rarely slow because it is old. It is slow because something is using more memory than it has. Here is how to find what, in order of what actually helps.
A five-year-old laptop runs the same instructions per second it did on the day you bought it. Nothing about the hardware degraded. What changed is everything you run on it: web apps got heavier, sites ship more JavaScript, and the number of things you keep open at once went up.
So the useful question is not “how do I make this old machine faster.” It is “what is consuming more than this machine has?” The answer is usually memory, and the fix is usually free.
First, find out what kind of slow it is
The four bottlenecks feel different, and the fixes do not overlap. Spend two minutes identifying which one you have before changing anything.
- Memory. Everything is fine until you switch to another window, and then the machine freezes for several seconds while the disk light goes solid. This is swapping, and it is the most common cause on an older laptop.
- CPU. The fans are loud, the chassis is hot, and one program is consistently pinning a core. Often a runaway tab or a stuck background process.
- Disk. Everything is uniformly slow — booting, opening files, launching apps — with no particular trigger. Typical of a mechanical hard drive, or an SSD that is nearly full.
- Heat. It starts fast and gets slower the longer it runs, especially on your lap or a soft surface. That is thermal throttling, and it usually means blocked vents or dust.
On Windows, open Task Manager with Ctrl + Shift + Esc and watch the Performance tab for a minute while the machine is misbehaving. On a Mac, Activity Monitor does the same job — the Memory tab has a “Memory Pressure” graph, and yellow or red there tells you the answer immediately.
If it is memory — and it usually is
When RAM fills up, the operating system does not stop. It moves the least recently used memory out to disk to make room, then reads it back when you need it again. That round trip is thousands of times slower than RAM. One window switch can mean hundreds of megabytes moving off and back on the disk, which is exactly the several-second freeze you recognise.
On a machine with 8 GB or less, the browser is almost always the largest single consumer. Not because browsers are badly built, but because each open tab is a live application holding its own JavaScript heap, DOM and decoded images — and most people keep twenty or thirty of them open.
The instinctive fix is to close tabs. The better fix is to release the memory they hold without closing them, which Chrome has supported for years and surfaces almost nowhere. We wrote about that mechanism in detail in how to free up RAM in Chrome without closing your tabs.
The changes that actually help, in order
- Reclaim what your tabs are holding. Free, immediate, and on a memory-bound laptop it is the single biggest improvement per minute spent. Measure your tabs, release the heavy ones, and let a scheduled cleanup keep it that way.
- Audit your extensions. Browser extensions run code in every page you open. Two or three well-built ones cost almost nothing; a dozen accumulated over years is real memory. See how much memory Chrome extensions use.
- Cut the startup list. Every app that launches at login takes memory permanently, whether or not you use it that day. Windows: Task Manager → Startup. macOS: System Settings → General → Login Items.
- Leave 15% of the disk free. Both Windows and macOS need working space, and a nearly full SSD slows down measurably. This is the cheapest fix on the list.
- Clear the vents. Five years of dust in a laptop heatsink is not a metaphor. If the machine is fast for ten minutes and slow after thirty, this is your problem.
- Then consider hardware. If it still has a mechanical hard drive, an SSD will transform it for well under the price of a new machine. More RAM is the other high-value upgrade, if the laptop allows it — many modern ultrabooks solder it down, so check first.
What to skip
Registry cleaners, “PC optimisers” and driver updater tools do not do anything a healthy system needs, and the category has a long history of bundling adware. Defragmenting is meaningless on an SSD and handled automatically on Windows for spinning disks. Reinstalling the operating system is a weekend of work that gives you a temporary improvement without addressing the cause.
None of those are on the list because none of them are what is slowing you down.
The honest summary
An older laptop with an SSD, clear vents and a browser that is not holding three gigabytes of forgotten tabs is a perfectly good machine for almost everything people do with a computer. The order matters: measure first, reclaim memory second, and only buy hardware once you know which bottleneck you actually have.
Common questions
- Why is my old laptop so slow all of a sudden?
- Usually because the software you run grew while the hardware stayed the same. Web apps and browser tabs use far more memory than they did a few years ago, and once RAM fills up the system starts swapping to disk, which is what makes everything feel like it has stopped.
- How much RAM do I need in 2026?
- 8 GB is workable if you are careful about tabs. 16 GB is comfortable. Under 8 GB, memory pressure will be your main bottleneck no matter what else you do.
- Will adding an SSD speed up an old laptop?
- More than any other single change, if it still has a mechanical hard drive. It also softens the pain of running low on RAM, because swapping to an SSD is dramatically faster than swapping to a spinning disk.
- Does closing browser tabs actually speed up a computer?
- Yes, when memory is the bottleneck — which on an older laptop it usually is. You do not have to close them, though. Discarding a tab frees the memory while leaving the tab open.
- Is it worth reinstalling the operating system?
- Rarely. It is a lot of work for a temporary result, and it does not address the actual cause, which is almost always memory pressure or a failing disk. Do the cheap diagnostic steps first.