Has your laptop started to work like a “snail on crutches”? Applications take minutes to open, videos lag, and even simple scrolling of pages is accompanied by annoying freezes? The problem of slow operation is one of the most common among budget users Lenovo IdeaPad, and bonus MacBook Pro. But before you take the device to a service center (where they will charge 1-3 thousand rubles for diagnostics), try to figure it out yourself.

In 80% of cases, laptop brakes are not due to hardware failures, but to software “contamination”: background activity, outdated software or incorrect system settings. This article will help identify exact reason slowdown and eliminate it without losing data - from basic actions (cleaning the disk) to advanced ones (optimizing the registry or replacing thermal paste). We will look at solutions for Windows 10/11, macOS And Linux, and also give a checklist for diagnosing the hardware.

1. Diagnostics: why is the laptop slow?

The first step is to determine what exactly is causing the brakes: software or hardware. To do this, just observe the behavior of the device:

  • 🔍 Software reasons: laptop slows down unpredictable - then everything is fine, then suddenly it freezes. Often accompanied by error messages or high CPU/RAM usage in Task Manager.
  • 🖥️ Hardware reasons: brakes permanent and progress over time. The laptop heats up, the fan makes noise, or slows down even under minimal load (for example, in a text editor).
  • 🔋 Nutrition problems: The brakes only appear when running on battery power. B Control Panel → Power Options Energy saving mode may be activated.

For a quick check, open Task Manager (combination Ctrl + Shift + Esc) and look at the tabs "Processes"** and **"Performance"**:

  • If CPU loaded at 90-100% for no apparent reason - the software is to blame (viruses, background processes).
  • If RAM packed to capacity (90%+), and less than 1 GB free - you need to clean or upgrade the RAM.
  • If disk (HDD/SSD) is constantly loaded at 100% - the problem is in drivers, fragmentation or a “dying” drive.
📊 How long has it been since you cleaned your laptop from dust?
  • Never
  • More than a year ago
  • In the last month
  • Regularly (every 3–6 months)

A critical sign of a hardware failure: the laptop slows down even in the BIOS (before the OS loads). This means problems with the hard drive, RAM or motherboard.

2. Cleaning the system of garbage and temporary files

The most common cause of brakes is clogged system. Temporary files, browser caches, remnants of uninstalled programs and duplicate documents can take up tens of gigabytes of space and slow down your work. Let's start with basic cleaning.

Windows 10/11

Use built-in tools:

  1. Open Settings → System → Device memory and press "Clear Now"** under the section "Disk Cleanup"**.
  2. Run Disk Cleanup (enter the name in the search). Select drive C:, check all the boxes and confirm deletion.
  3. Delete temporary files manually: go to C:\Users\Your_name\AppData\Local\Temp (turn on showing hidden files!) and delete all contents of the folder.

For deep cleaning, use the following utilities:

  • 🧹 CCleaner (free version) - cleans the registry, browser cache and temporary files.
  • 🗑️ BleachBit is a more aggressive alternative for removing deep-tail programs.
  • 🔍 Wise Disk Cleaner — finds and deletes duplicate files.

☑️ Windows cleaning checklist

Done: 0 / 5

macOS

On Mac, cleanup is done through:

  1. About the program → Memory → click “Manage”** to remove unnecessary files.
  2. utility CleanMyMac X (paid, but there is a trial period).
  3. Manual cache clearing: open ~/Library/Caches and delete the contents of the folders (do not touch system files!).

Attention! Don't use "optimizers" like MacKeeper — they often contain malicious code and themselves cause slowdowns.

Linux

In distributions based on Ubuntu/Debian cleaning is performed with the commands:

sudo apt clean && sudo apt autoclean  # Очистка кэша пакетов

sudo journalctl --vacuum-time=2weeks # Очистка логов старше 2 недель

rm -rf ~/.cache/* # Удаление кэша пользователя

To search for large files use:

sudo du -h --max-depth=1 / | grep '[0-9]\+G'  # Показывает папки >1 ГБ

3. Optimization of startup and background processes

One of the main reasons for slow performance is startup programs. Many utilities (for example, Skype, Steam, NVIDIA GeForce Experience) are added there without your knowledge and consume resources even when not in use.

How to disable autostart in Windows

  1. Open Task Manager → Startup.
  2. Sort programs by column “Impact on startup”** and disable everything unnecessary (except antivirus and drivers).
  3. To completely remove it from startup, use Autoruns from Microsoft (advanced tool).

Examples of programs that can be safely disabled:

  • 🎮 Origin, Epic Games Launcher, Uplay - if you don't play every day.
  • 📧 Mail.ru Agent, Yandex.Disk - if you don't use it all the time.
  • 🖨️ HP Support Assistant, Canon My Printer — utilities for printers and scanners.

macOS and Linux

On Mac, startup is controlled through:

  • System Settings → Users and Groups → Login Items.
  • Folder /Library/LaunchAgents/ (system processes) and ~/Library/LaunchAgents/ (custom).

In Linux, autoloading is configured via:

systemctl --user list-unit-files --state=enabled  # Показывает активные сервисы

systemctl --user disable имя_сервиса.service # Отключает сервис

💡

If, after disabling startup, the program stops updating (for example, Discord), just run it manually - updates will be installed automatically.

4. Check for viruses and malware

Viruses and mining bots are a common cause hidden CPU load. Even if you have an antivirus installed, it might have missed the threat. Use specialized tools for in-depth scanning.

List of reliable antiviruses (2026)

Antivirus Type Free version Features
Kaspersky Virus Removal Tool Portable scanner Yes Does not require installation, even finds rootkit viruses
Malwarebytes Anti-spy Yes (14 days) Specializes in adware and miners
HitmanPro Second opinion scanner No (30-day trial) Finds threats missed by the main antivirus
AdwCleaner Adware Remover Yes Removes unnecessary browser extensions and toolbars

Checking instructions:

  1. Download Kaspersky Virus Removal Tool from the official website.
  2. Run the utility as administrator and select "Deep check"**.
  3. After scanning, remove all threats found and restart your laptop.
  4. Check again using Malwarebytes (set scan to search rootkit And PUPs).

⚠️ Attention! If the antivirus finds viruses in files svchost.exe or explorer.exe, this may indicate infection bootkit (virus in the boot sector). In this case, you need to reinstall the OS or contact the service.

5. Hard drive optimization (HDD/SSD)

The condition of the drive directly affects the speed of operation. HDD over time it fragments and “grows old”, and SSD may be overloaded due to lack of free space (it is recommended to leave 10–15% of the disk empty).

For HDD: defragmentation and error checking

On Windows:

  1. Open This computer, right click on the disk C:“Properties” → “Service” → “Optimize”**.
  2. Select the drive and click “Optimize”** (defragmentation).
  3. To check for errors use the command in CMD (from admin):
    chkdsk C: /f /r

    Reboot your laptop to complete the test.

⚠️ Attention! Don't defragment SSD - this shortens its service life! For SSDs, use the command optimize-ssd in PowerShell:

Optimize-Volume -DriveLetter C -ReTrim -Verbose

For SSD: enable TRIM and check health

TRIM is a feature that keeps SSD speeds high. To enable it:

  1. Open CMD from admin and enter:
    fsutil behavior query DisableDeleteNotify

    If the result 0 — TRIM is enabled. If 1 — activate with the command:

    fsutil behavior set DisableDeleteNotify 0
  2. Check SSD health with utility CrystalDiskInfo. If the status "Alarm"** or “Bad”**, the drive needs to be replaced.

Signs of a “dying” SSD:

  • 🐢 The laptop freezes for 10–30 seconds when opening files.
  • 🔄 Frequent errors when copying data (CRC error).
  • 📉 B CrystalDiskInfo parameters Reallocated Sectors Count or Uncorrectable Errors have non-zero values.
How to transfer the system to a new SSD without reinstalling?

Use programs Macrium Reflect (free) or Clonezilla to clone a disk. Connect the new SSD via USB adapter, launch the program and follow the instructions. After cloning, replace the old drive with a new one or configure the BIOS to boot from the cloned drive.

6. Update drivers and system

Outdated drivers are a common cause of slowdowns, especially after updating Windows. Laptop manufacturers (HP, Dell, Asus) regularly release patches to fix bugs, so it is important to keep the software up to date.

How to update drivers in Windows

Method 1: Via Device Manager

  1. Click Win + X"Device Manager"**.
  2. Expand sections "Video adapters"**, "Sound devices"** and “Network adapters”** (the most problematic categories).
  3. Right click on the device → “Update driver” → “Automatic search”**.

Method 2: From the manufacturer's official website

  • 🔧 For NVIDIA/AMD: download drivers from websites nvidia.ru or amd.com.
  • 💻 For laptops: use utilities Dell SupportAssist, HP Support Assistant or Lenovo Vantage.

⚠️ Attention! Don't use programs like Driver Booster or DriverPack Solution - they often install incompatible or outdated drivers, which leads to blue screens of death (BSOD).

Updating macOS and Linux

On Mac, updates are installed via System settings → Software update. For Linux use the commands:

  • 🐧 Ubuntu/Debian:
    sudo apt update && sudo apt upgrade -y
  • 🎯 Fedora:
    sudo dnf upgrade --refresh
  • 🌐 Arch Linux:
    sudo pacman -Syu

7. Hardware reasons: overheating, dust, wear

If software methods do not help, the problem lies in the hardware. The most common hardware causes of brakes:

  • 🔥 Overheating: dust in the cooling system or dried thermal paste.
  • 🔋 Worn out battery: The laptop slows down when disconnected from the network.
  • 🖥️ Faulty RAM: errors Memory Management in Event Viewer.
  • 💾 Drive problems: HDD with bad sectors or SSD on the verge of failure.

How to check CPU temperature

Use programs:

  • 🌡️ HWMonitor (Windows) - Shows CPU, GPU and disk temperatures.
  • 🍎 iStat Menus (macOS) - real-time monitoring.
  • 🐧 Psensor (Linux) - temperature and load graphs.

Normal temperatures:

  • 🖥️ Idle: 30–50°C.
  • 🎮 Under load (games, rendering): 70–85°C.
  • ⚠️ Critical temperature: >90°C (the laptop will shut down urgently).

If the temperature is above normal:

  1. Clean the laptop from dust (use a can of compressed air).
  2. Replace the thermal paste (this will require you to disassemble the laptop).
  3. Use a cooling pad with fans.
💡

If the laptop shuts down at temperatures >95°C, this is protection against damage to the processor. Operating the device in this condition is dangerous - urgent cleaning or repair of the cooling system is required.

8. Radical measures: system reset or upgrade

If none of the methods help, there are two options left:

  1. Reset Windows/macOS to factory settings.
  2. Upgrade of components (adding RAM, replacing HDD with SSD).

Reset Windows 10/11 without data loss

Go to Settings → System → Recovery → Reset this PC and select:

  • 🔄 “Keep my files”** - removes programs and settings, but leaves documents.
  • 🧹 “Delete everything”** - complete cleaning (recommended for viruses).

On a Mac, reset is done via macOS Utilities → Reinstall macOS (in recovery mode, Cmd + R when loading).

Laptop upgrade: what can be improved?

Accessories What does it give? Cost (2026) Difficulty of replacement
Replacing HDD with SSD Accelerates OS and program loading by 3–5 times 3–10 thousand rubles. (256 GB–1 TB) Easy (in 90% of laptops)
Adding RAM Improved multitasking (e.g. 4GB → 8GB) 2–6 thousand rubles. (per 8 GB stick) Medium (compatibility required)
Replacing thermal paste Reduce temperature by 10–20°C 200–500 rub. (paste) + work Difficult (requires disassembly experience)
Replacing the battery Fixing brakes when running on battery power 2–8 thousand rubles. Easy (most models)

Advice: Before upgrading, check the compatibility of components on the laptop manufacturer’s website or through the utility Crucial System Scanner.

FAQ: Frequently asked questions about laptop brakes

❓ The laptop only slows down when running on battery power. What's the matter?

Most likely, the power saving mode is activated. Go to Control Panel → Power Options and select a scheme “High performance”** or "Balanced"**. If this does not help, check the battery wear with the utility BatteryInfoView (Windows) or coconutBattery (macOS). When the capacity is <50% of the rated capacity, it is time to replace the battery.

❓ After updating Windows, the laptop began to slow down. What to do?

Revert to previous OS version (within 10 days after update): Settings → System → Recovery → Return to previous version of Windows. If this is not possible, check the drivers (especially for the video card and chipset) and roll them back via Device Manager. Disabling unnecessary visual effects will also help: Settings → Accessibility → Transparency effects (disable).

❓ The laptop slows down in games, although everything was fine before. What's the problem?

The reasons may be as follows:

  • 🔥 Thermal throttling: The processor or video card overheats and reduces frequencies. Check the temperature in MSI Afterburner.
  • 🖥️ Outdated drivers: update the drivers for the video card (NVIDIA/AMD) and chipset.
  • 🎮 Background processes: close Discord, browsers and other programs via Task Manager.
  • 💾 Lack of RAM: If you have 8 GB or less, the game may load data from the disk, which causes lag.

Also check the graphics settings in the game - perhaps after the update the options were reset and turned on ray tracing or DLSS (if the video card does not support it).

❓ Is it possible to speed up an old laptop with 2 GB RAM and HDD?

Yes, but radically. Here's what will really help:

  1. Replace HDD with SSD (even budget Kingston A400 will increase speed by 3-4 times).
  2. Increase RAM to 4-8 GB (if motherboard supports).
  3. Install a lightweight OS: Windows 10 LTSC, Linux Mint Xfce or AntiX.
  4. Disable all visual effects and background services via msconfig.

If the laptop was released before 2010, an upgrade may not be worthwhile - it’s cheaper to buy a used model with Intel Core i5 4th generation.

❓ How to check if your laptop is slowing down due to viruses if the antivirus doesn’t find anything?

Use second opinion tools:

  1. Download Kaspersky Virus Removal Tool And Dr.Web CureIt! — run a deep scan.
  2. Check network activity in Task Manager (tab "Network"**). If a laptop sends data to unknown IPs, this is a sign of a botnet.
  3. Use Process Explorer (from Microsoft) to analyze suspicious processes.
  4. Check the file hosts (on the way C:\Windows\System32\drivers\etc\hosts) for the presence of unfamiliar entries.

If suspicions remain, but antiviruses are silent, make a backup copy of your data and reinstall the OS.