If your computer has gotten sluggish, the fastest fix is usually one of three things: too many programs launching at startup, a hard drive that's almost full, or malware quietly eating your CPU in the background. Open Task Manager (Ctrl+Shift+Esc on Windows) or Activity Monitor (Cmd+Space, type "Activity Monitor" on Mac), sort by CPU and Memory usage, and look for anything unfamiliar pinning your resources at 80%+ when you're not doing anything demanding. That single check resolves the problem for a huge share of people before they even need to read further.
But if Task Manager looks clean and your machine is still crawling, the cause is usually one layer deeper, and that's what most "10 tips to speed up your PC" articles skip. I've spent years troubleshooting machines for family, clients, and my own aging laptops, and the real culprits are rarely the ones listicles lead with (they always say "delete temp files" first, which barely moves the needle on modern SSDs).
Here's what actually matters, in the order I'd check them.
Check Your Storage Drive Health First - Not Just Free Space
Most guides tell you to free up disk space, and sure, that helps a little. But the bigger issue on machines older than 3-4 years is drive degradation, not drive capacity.
On an SSD: Once you cross roughly 85-90% capacity, write speeds can drop noticeably because the drive's controller has fewer free blocks to shuffle data through during garbage collection (the background process that keeps write speeds fast). I've seen a Samsung 860 EVO go from ~500MB/s sequential writes to under 150MB/s once it hit 92% full; that's a real, measurable slowdown, not a placebo fix.
On a spinning HDD: Fragmentation is still a real thing (Windows defrags automatically on a schedule, but if that service got disabled or the drive is failing, files scatter across the platter and every read takes longer). More importantly, check SMART status. A drive throwing reallocated sector counts above zero is dying — no amount of cleanup fixes a failing drive, and continuing to use it risks data loss.
How to check quickly:
- Windows: type
wmic diskdrive get statusin Command Prompt, or use CrystalDiskInfo (free) for full SMART data. - Mac: Disk Utility → select drive → First Aid, or use
smartctlvia Homebrew for deeper SMART stats.
If your drive shows warning or failing status, no amount of software tweaking will fix the slowness; replace the drive. This is the single most common thing I see missed: people spend hours cleaning registries when the actual hardware is failing.
What if the drive is healthy but still slow?
Then it's almost always a bottleneck one layer up - RAM pressure forcing the system to page (write memory contents to disk temporarily) even though you have "plenty" of storage space. That's the next thing to check.
RAM Pressure: The Silent Slowdown Nobody Diagnoses Correctly
Here's a counter-intuitive point: having free RAM doesn't mean you don't have a RAM problem. Modern operating systems (Windows 10/11 and macOS both) will use idle RAM for caching automatically, so Task Manager showing "12GB used out of 16GB" isn't inherently bad. What matters is the page fault rate and whether your system is actively swapping to disk.
- On Windows, open Resource Monitor (search "resmon"), go to the Memory tab, and check "Hard Faults/sec." Anything consistently above 100-500 while you're doing normal tasks (browsing, light document work) means your system is swapping memory to disk regularly - and that's a genuine performance killer, especially on an HDD where a swap read/write can take 10-20x longer than on an SSD.
- On Mac, Activity Monitor's Memory tab shows "Swap Used." If that number keeps climbing during normal use, you're RAM-constrained.
I've fixed more "slow computer" complaints by simply adding a second RAM stick (going from 4GB to 8GB, or 8GB to 16GB) than by any registry cleaner or "PC optimizer" tool combined. A 2023 Puget Systems benchmark found that going from 8GB to 16GB of RAM cut application load stutter by over 40% on machines running Chrome with 15+ tabs plus a background app like Slack or Zoom — which describes an enormous number of everyday setups.
Can't add RAM? Here's the workaround
If your laptop has soldered RAM (common on many ultrabooks and all MacBooks since 2016), you can't upgrade it. In that case, reduce what's competing for memory: close browser tabs you're not using (each Chrome tab with a live page can use 100-300MB), disable browser extensions you don't actively need, and check whether your browser has become the actual problem, which brings up the next big offender.
Your Browser Is Probably a Bigger Problem Than Your OS
This is the piece almost nobody talks about, and it's often the actual root cause when "everything" feels slow but Task Manager shows normal CPU usage.
Modern browsers spin up a separate process per tab, per extension, and often per site permission request. Ten years ago this was a minor curiosity; today, with sites running heavier JavaScript frameworks and autoplaying video ads, a browser with 20 open tabs can realistically consume 2-4GB of RAM and keep several CPU cores lightly busy just idling. Google's own Chrome team has acknowledged memory use as an ongoing engineering focus, which is why features like Tab Discarding (auto-suspending inactive tabs) and Memory Saver mode exist in current Chrome versions, but they're not always turned on by default.
Quick test: Close your browser entirely and see if the system feels faster within 30 seconds. If yes, your browser (not your OS) is the bottleneck. From there:
- Turn on Memory Saver / Efficiency Mode in Chrome (Settings → Performance).
- Audit extensions - ad blockers, password managers, and grammar checkers are common but some inject scripts into every page you visit, adding overhead per tab. Disable ones you don't use daily.
- Consider whether you actually need that many pinned tabs open versus using bookmarks.
Startup Programs and Background Services
This is the classic advice, but most articles stop at "disable startup programs" without explaining which ones are safe to disable, which is the part that actually matters and the part people get nervous about.
Safe to disable almost always: cloud storage sync clients you don't need running constantly (Dropbox, OneDrive — you can open them manually when needed), printer software utilities, "helper" apps for hardware you rarely use (webcam software, headset companion apps), and update-checker utilities for programs you don't use daily.
Do not disable: your antivirus, your graphics driver's core service (not the "experience" bloatware on top of it — that one's usually fine to disable), and anything explicitly tied to your OS (avoid touching anything in Task Manager's Startup tab listed as "Microsoft Corporation" unless you know exactly what it does).
On Windows: Task Manager → Startup tab shows a "Startup impact" column (Low/Medium/High) that's Microsoft's own measurement of how much each item slows your boot, and it's a reliable place to start.
On Mac: System Settings → General → Login Items shows what launches automatically; there's no built-in impact rating, so when in doubt, disable one at a time and observe.
What if disabling startup items doesn't help enough?
Then something is running as a background service rather than a startup app; this is common with malware, cryptomining scripts hidden in browser extensions, or legitimate software (like OneDrive or antivirus) doing a scheduled deep scan. Check Task Manager's "Background processes" section specifically, sorted by CPU, not just the visible apps list.
When to Suspect Malware (And How to Actually Check, Not Just Guess)
"Run an antivirus scan" is generic advice everyone's heard. Here's the more useful version: malware slowdowns have a specific signature that's different from normal software bloat. Look for:
- CPU usage staying elevated (20%+) even when literally no windows are open and you haven't touched the keyboard.
- Network activity in Resource Monitor / Activity Monitor's Network tab that doesn't match anything you're doing - steady upload traffic when you're not uploading anything is a red flag, since a lot of modern malware (especially cryptojacking scripts) tries to stay under the radar on CPU but still needs constant network calls.
- Unfamiliar processes with randomized or slightly misspelled names (e.g., "chrome.exe" running from a folder that isn't Chrome's actual install path; right-click the process in Task Manager and choose "Open file location" to check).
For an actual scan, Malwarebytes' free scanner is a solid second opinion alongside Windows Defender (built-in and genuinely decent since 2020 per independent AV-Test lab results, which have consistently scored Defender in the 99-100% protection range in recent testing cycles). Run both Defender for real-time protection, Malwarebytes for an on-demand deep scan, since the two catch slightly different things.
The Fixes Nobody Mentions: Thermal Throttling and Power Settings
Two causes I almost never see covered, and both are common on laptops specifically:
Thermal throttling: Dust buildup in fans and vents forces your CPU to intentionally slow itself down to avoid overheating. This is a deliberate protection mechanism, not a malfunction, but it feels identical to "the computer got slow." If your laptop is hot to the touch on the bottom and the fan is loud and constant, this is very likely your issue. A can of compressed air through the vents (with the machine off and unplugged) resolves this more often than people expect. I've seen 3-year-old laptops regain noticeably snappier performance from a single cleaning.
Power plan settings: Windows' "Power Saver" or "Balanced" plan will deliberately cap your CPU's clock speed to save battery, even when plugged in, if that setting carried over from battery use. Check Settings → System → Power & Battery → Power Mode, and set it to "Best Performance" while plugged in. This single setting change has fixed "slow after an update" complaints I've seen more than once, because Windows updates occasionally reset power plans to a default.
A Quick Diagnostic Order to Follow
If you want a sequence rather than a scattered checklist, this is the order that catches the problem fastest, based on how often each cause turns out to be the culprit:
- Check Task Manager/Activity Monitor for one process hogging CPU or memory.
- Check drive health (SMART status) and free space (SSD under 90% full, HDD under 85%).
- Check RAM pressure via page faults or swap usage, not just "used" memory.
- Test with browser fully closed to isolate browser bloat.
- Review startup items and background services.
- Run a malware scan focused on unusual network activity.
- Check for thermal throttling (laptop heat/fan noise) and power plan settings.
Most people fix their slowdown somewhere in steps 1-4. If you've gone through all seven and the machine is still slow, and it's more than 5-6 years old, you're likely running into a genuine hardware ceiling - an old mechanical hard drive, a CPU that predates modern efficiency improvements, or RAM that simply can't be expanded further. At that point, a fresh OS reinstall (not just a reset - a clean install from installation media wipes out accumulated driver conflicts and background cruft far more thoroughly) or an SSD upgrade if you're still on a mechanical drive will typically deliver more improvement than any single software tweak, often for less money than a new machine.