UK tech experts · info@vividrepairs.co.uk
Vivid Repairs
A Windows 11 desktop PC on a modern desk displaying a frozen unresponsive screen with spinning cursor, cool blue ambient lighting from monitor, tense focused atmosphere
Fix It Yourself · Troubleshooting

Windows computer freezing

Published 24 August 202613 min read
As an Amazon Associate, we may earn from qualifying purchases. Our ranking is independent.

Windows computer freezing is one of those problems that wastes your time fast. The screen locks up, the mouse stops responding, and you're left staring at a cursor that won't move. This guide skips the guesswork and goes straight to what actually works, ordered from quickest fix to deepest diagnostic, so you're not burning an hour on advanced steps when a two-minute Task Manager kill would have done it.

TL;DR

Windows computer freezing is usually caused by resource overload, dodgy drivers, a full disk, failing hardware, or malware. Start by force-rebooting, killing heavy processes in Task Manager, and freeing up disk space. If it keeps happening, update drivers, run SFC, check your RAM, and clean out the dust. Most cases are sorted within 30 minutes.

⏳️ 13 min read ✅ 85% success rate 📅 Updated July 2026

Key Takeaways

  • Windows computer freezing is most often caused by resource overload, which Task Manager fixes in under two minutes.
  • Outdated or corrupt drivers, especially graphics and storage drivers, are a very common culprit.
  • A nearly full C: drive actively causes freezing. Keep at least 15% free.
  • Failing RAM and overheating are hardware causes that need proper testing, not guesswork.
  • Event Viewer tells you exactly what crashed and when. Use it before jumping to hardware replacements.

At a Glance

  • Difficulty: Easy to Medium
  • Time Required: 15 to 60 mins depending on tier
  • Success Rate: 85% of users sorted with Tier 1 or Tier 2 steps

What Causes Windows Computer Freezing?

Before you start clicking through random fixes, it's worth spending 60 seconds understanding what's actually going wrong. Windows computer freezing isn't one problem, it's five different problems that look identical on the surface. Pick the wrong fix and you'll waste an hour achieving nothing.

The most common cause, by a wide margin, is resource overload. One rogue process, a browser with 40 tabs open, or a background update hammering the disk can push CPU, RAM, or disk usage to 100% and the whole system grinds to a halt. You'll often see this happen when you open a heavy application or switch tasks quickly.

Driver problems are the second big one. Graphics drivers, storage controller drivers, chipset drivers, even network adapters, any of these can go bad after a Windows update or a dodgy install. When a driver crashes, Windows tries to recover it, and sometimes it can't. The result is a hard freeze or a blue screen. If your freezing started right after a Windows update, this is almost certainly the cause.

Disk issues are sneaky. File system errors or a drive that's starting to fail will cause Windows to hang while it waits for a read or write that never completes. The system looks frozen but it's actually stuck waiting on storage. SMART errors in Event Viewer are the giveaway here.

Faulty RAM causes some of the most unpredictable freezing you'll ever see. It can happen during specific tasks, randomly, or only under load. There's no pattern, which makes it frustrating to diagnose without proper testing. And overheating is the other hardware cause. When a CPU or GPU hits its thermal limit (usually around 90 degrees Celsius), it either throttles hard or the system shuts down to protect itself. Either way, it looks like a freeze.

Finally, malware. Certain infections sit in the background consuming CPU and disk constantly, making the machine unusable. Others corrupt system files, which causes instability that looks just like a hardware problem.

Windows Computer Freezing: Quick Fix (5 to 10 Minutes)

Start here. These steps fix the majority of Windows computer freezing cases and take almost no time. If your machine is completely locked up right now, begin with Step 1.

1

Force Reboot and Kill Heavy Processes Easy

  1. Hard reboot the PC
    Hold the physical power button down for about 10 seconds until the machine shuts off completely. Wait 30 seconds, then press the power button to start it again. Don't just tap it, hold it until the lights go out.
  2. Open Task Manager
    Press Ctrl + Shift + Esc as soon as Windows loads. Click the Processes tab. Sort by CPU, then Memory, then Disk. Look for anything sitting near 100%.
  3. Kill the offending process
    Select it and click End Task. If it's a browser, a game, or a media app, close it properly, restart it, and see if the problem comes back. If one specific app keeps doing this, it needs reinstalling or updating.
  4. Free up disk space
    Open File Explorer and check your C: drive. If it's above 85% full, that's a problem. Press Windows + R, type %temp%, and delete everything in that folder. Empty the Recycle Bin. Aim for at least 15% free space on the system drive.
✅ If the freeze doesn't come back after a normal session of use, you're sorted. Keep an eye on Task Manager over the next day or two.
2

Run a Malware Scan Easy

  1. Open Windows Security
    Type Windows Security in the Start search bar and open it. Go to Virus and threat protection.
  2. Run a Quick Scan
    Click Quick scan and let it run. If anything is found, follow the prompts to remove or quarantine it, then reboot.
  3. Consider an Offline Scan for stubborn infections
    If the Quick Scan finds nothing but you still suspect malware, scroll down to Microsoft Defender Offline Scan. This runs before Windows loads, catching things that hide from a live scan. It's proper thorough.
ℹ️ If malware turns out to be the cause and you're seeing signs of a more serious infection, check out our malware removal guide for Windows for a deeper clean-up process.
✅ No malware found, or threats removed and system stable after reboot? Move on to prevention. Still freezing? Continue below.

More Windows Computer Freezing Solutions (15 to 30 Minutes)

Quick fixes didn't hold? These intermediate steps tackle the driver and system-level causes that are responsible for a large chunk of persistent Windows computer freezing cases. You'll need admin rights for most of these.

3

Update Windows and Device Drivers Easy

  1. Install Windows updates
    Open Settings > Windows Update and install everything pending. Stability patches and driver updates come through here regularly. Don't skip them.
  2. Check Device Manager for problem drivers
    Search for Device Manager in the Start menu and open it. Look for any device with a yellow exclamation mark or red X. Right-click it, choose Update driver, then Search automatically for drivers.
  3. Roll back a bad driver if needed
    If freezing started right after a specific update, right-click the device, go to Properties > Driver > Roll Back Driver. This is especially useful for graphics and storage drivers. Took me three reboots once before a rolled-back GPU driver finally stuck, but it fixed a month of random freezes.
✅ Device Manager shows no warnings and Windows is fully updated? Good. Test for a day before moving on.
4

Repair System Files with SFC and DISM Medium

  1. Open Command Prompt as Administrator
    Search for cmd in Start, right-click it, and choose Run as administrator.
  2. Run System File Checker
    Type sfc /scannow and press Enter. This scans protected Windows files and replaces corrupted ones. It takes a few minutes. Don't close the window. Microsoft's official SFC documentation explains exactly what the output messages mean.
  3. Run DISM to fix the component store
    After SFC finishes, run: DISM.exe /Online /Cleanup-image /Restorehealth. This repairs the underlying Windows image that SFC draws from. If SFC found errors but couldn't fix them, DISM usually sorts it. Then run SFC again.
  4. Schedule a disk check
    Still in the admin Command Prompt, run: chkdsk C: /f. It'll ask to schedule for next reboot. Type Y and restart. Windows will check and fix file system errors before loading. This can take 10 to 20 minutes on a large drive.
✅ SFC reports no integrity violations and chkdsk completes without errors? Your system files are clean.
5

Fix Power Settings and Virtual Memory Medium

  1. Disable Fast Startup
    Open Control Panel > Power Options. On the left, click Choose what the power button does. Uncheck Turn on fast startup. Fast startup can cause instability on some systems because it doesn't do a full shutdown.
  2. Turn off PCIe Link State Power Management (desktops)
    In Power Options, click Change plan settings > Change advanced power settings. Expand PCI Express > Link State Power Management and set it to Off. This stops Windows aggressively power-managing PCIe devices, which can cause freezes on some hardware.
  3. Check the paging file
    Press Windows + R, type sysdm.cpl, press Enter. Go to Advanced > Performance > Settings > Advanced > Change. Make sure a paging file exists on C: and that it's set to at least 100 MB larger than your installed RAM. If it's missing entirely, that's a problem.
ℹ️ Virtual memory (the paging file) acts as overflow when your RAM fills up. Without it, Windows can't create memory dumps either, which makes diagnosing crashes much harder.

Advanced Windows Computer Freezing Fixes (30+ Minutes)

Still getting Windows computer freezing after all of the above? Now we go deeper. These steps are for persistent, hard-to-explain freezes where the usual fixes haven't held. You'll be looking at hardware diagnostics, crash dumps, and thermal checks.

6

Read Event Viewer for Crash Clues Medium

  1. Open Event Viewer
    Press Windows + R, type eventvwr, press Enter. Expand Windows Logs > System in the left panel.
  2. Find errors around freeze times
    Look for Critical or Error entries at the exact time of your last freeze. Double-click them to see the Event ID and source. Recurring disk errors (Event ID 7, 11, 51) point to a failing drive. Kernel-Power Event ID 41 means the system lost power unexpectedly, usually a hard freeze or overheating shutdown.
  3. Generate a full diagnostics report
    Press Windows + R, type perfmon /report, press Enter. Windows collects data for about 60 seconds, then generates a report. Find it under Reports > System > System Diagnostics. It flags CPU, disk, memory, and driver warnings in one place.
⚠️ If Event Viewer shows repeated disk errors (Event IDs 7, 11, or 51), back up your data immediately before doing anything else. A failing drive can die completely with no further warning.
7

Test RAM Properly Medium

  1. Run Windows Memory Diagnostic
    Press Windows + R, type mdsched.exe, press Enter. Choose Restart now and check for problems. Windows runs a memory test before loading. Results appear after reboot in the notification area. Microsoft's Memory Diagnostic documentation covers what the results mean.
  2. Use MemTest86 for thorough testing
    Windows Memory Diagnostic is decent but not exhaustive. For a proper test, download MemTest86 (free), write it to a USB drive, and boot from it. Let it run at least two full passes, ideally overnight. Any errors at all mean faulty RAM.
  3. Isolate the bad module
    If errors are found and you have more than one RAM stick, test each one individually. Pull all but one, run the test, swap in the next. Replace the faulty module. Don't mix new and old RAM from different batches if you can avoid it.
✅ No errors across multiple passes? RAM is fine. Move on to thermals.
8

Check Temperatures and Clean the Cooling System Easy

  1. Monitor CPU and GPU temperatures under load
    Download a hardware monitor tool (HWiNFO64 or HWMonitor are both solid options, Tom's Hardware has a good rundown of the best CPU temp monitors). Open it, then run something demanding for 10 minutes. Watch the CPU and GPU temps. Above 90 degrees Celsius under load is dangerous territory.
  2. Clean the cooling hardware
    Shut down and unplug the PC. For a desktop, open the side panel and use compressed air to blast dust out of the CPU heatsink, GPU heatsink, case fans, and any dust filters. For a laptop, blow compressed air through the vents. If you can open the bottom panel, clean the fan and heatsink directly. Dust buildup is the number one cause of overheating in machines that are more than two years old.
  3. Check placement and airflow
    A desktop shoved in a tight cupboard with no airflow will overheat regardless of how clean it is. A laptop sitting on a duvet blocking all the vents will throttle within minutes. Make sure there's clear space around all vents.
  4. Check SATA and power cables (desktops)
    While you're in there, press firmly on all SATA data cables connecting your drives to the motherboard. A slightly loose SATA cable causes exactly the kind of intermittent disk stall that looks like a freeze. Disconnect and reconnect them properly.
ℹ️ If cleaning doesn't bring temperatures down and the CPU is several years old, the thermal paste between the CPU and heatsink may have dried out. Replacing it is a bit more involved but makes a big difference on older machines. Our laptop overheating fix guide covers this in detail for portable machines.
9

Check Drive Health with SMART Diagnostics Hard

  1. Use your drive vendor's tool
    Western Digital drives: use WD Dashboard. Samsung SSDs: use Samsung Magician. Seagate: use SeaTools. These tools read SMART data and run surface tests that generic tools miss. A drive showing Reallocated Sectors, Pending Sectors, or Uncorrectable Errors in SMART is failing.
  2. Cross-check with Event Viewer
    As noted above, disk errors in Event Viewer (IDs 7, 11, 51) alongside SMART warnings is a clear sign the drive needs replacing. Don't wait on this one.
  3. Back up immediately if any SMART warnings appear
    Seriously. Do this before anything else. A drive that's showing SMART errors can fail completely at any point. Get your data off it first, then replace the drive. If you need help recovering data from a failing drive, see our hard drive data recovery guide.
⚠️ SMART errors are not a maybe. They mean the drive is physically degrading. Back up first, diagnose second.

Preventing Windows Computer Freezing

Most Windows computer freezing is preventable. Here's what actually matters, in order of importance.

Keep drivers and Windows updated. This is the single biggest thing. A large proportion of the freeze cases we see remotely are caused by a driver that went bad after an update, or a security patch that was skipped. Set Windows Update to automatic and check Device Manager every few months.

Watch your disk space. Keep at least 15% free on C: at all times. Set a reminder to clear out Downloads and %temp% every month or so. It takes two minutes and prevents a surprising number of slowdowns and freezes.

Manage startup programmes. Press Ctrl + Shift + Esc, go to the Startup tab, and disable anything you don't need running from boot. Every unnecessary startup programme is eating RAM and disk before you've even opened a browser.

Clean the hardware periodically. Every six months for a desktop, every year for a laptop. Compressed air, two minutes, done. It keeps temperatures in check and extends the life of the machine properly.

Run a memory test and disk health check once a year. Not because you think something is wrong, but because catching a failing drive or RAM module early means you can replace it before it takes your data with it. The SFC tool is also worth running every few months as a quick sanity check on system file integrity.

Back up regularly. Windows File History, a system image, or a cloud backup. If a drive fails or Windows goes badly wrong, a backup is the difference between a two-hour recovery and a two-day disaster.

Windows Computer Freezing: Summary

Windows computer freezing is annoying, but it's almost always fixable without replacing hardware. Start with the quick fixes, force reboot, kill heavy processes in Task Manager, free up disk space, and run a malware scan. That alone sorts the majority of cases. If it keeps happening, update your drivers, run SFC and DISM, and check your power settings. For persistent freezing, Event Viewer will usually tell you exactly what's failing, whether that's a disk, a driver, or the RAM. And if temperatures are the problem, a can of compressed air is often all it takes. Work through the tiers in order, don't skip to hardware replacements before you've checked the software side, and you'll have this sorted.

Frequently Asked Questions

Resource overload is the most common cause. High CPU, RAM, or disk usage from applications or background processes makes the system unresponsive. Closing heavy apps via Task Manager and freeing up disk space usually sorts it quickly.

Open Windows Security from the Start menu, go to Virus and threat protection, and run a Quick Scan. If malware is found, follow the prompts to remove or quarantine it. For stubborn infections, use Microsoft Defender Offline Scan, which runs before Windows loads.

Yes, absolutely. Faulty or outdated graphics, storage, chipset, and network drivers are a very common cause of system hangs. Update them via Device Manager, or roll back a recent driver update if freezing started right after one was installed.

Aim for at least 15% free space on your C: drive. A very full system drive slows everything down and contributes directly to freezing. Clear out Downloads, Recycle Bin, and temp files (type %temp% in the Run box to find them).

Yes. CPU or GPU temperatures above 90 degrees Celsius under load are dangerous and will trigger freezes or sudden shutdowns. Use a hardware monitor tool to check temps, then clean dust from fans, heatsinks, and vents with compressed air.