My Windows PC keeps freezing when certain programs stop responding, and I can’t always close them with the usual methods like the X button or even Task Manager. Sometimes the whole system slows down until I have to hard reboot, which I know isn’t good. Can someone explain reliable ways to force quit stubborn apps on Windows and any tips to prevent this from happening so often?
Had this a lot on some work machines. Here is what tends to work, from light to nuclear.
- Standard force quit with Task Manager
- Press Ctrl + Shift + Esc
- If it opens in simple view, click “More details”
- Go to the “Processes” tab
- Click the frozen app
- Click “End task” bottom right
If that does nothing and the window still sits there:
- Use ALT + F4 on the frozen window
- Click the frozen program once to focus it
- Press Alt + F4
- Wait 5 to 10 seconds
Sometimes it takes a bit before Windows kills it.
- Use the “taskkill” command
This hits harder than Task Manager.
- Press Win + R
- Type: cmd
- Press Ctrl + Shift + Enter for admin
- In the black window, type:
tasklist - Find the name of the frozen app, for example: chrome.exe, notepad.exe, game.exe
Then run either:
taskkill /IM chrome.exe /F
or, if you know the PID from tasklist, for example 1234:
taskkill /PID 1234 /F
The /F flag forces termination. If it fails, note the exact error message.
- Create a quick “Force Quit” shortcut
If this happens often, make a desktop shortcut that kills common offenders.
- Right click desktop → New → Shortcut
- In “Type the location of the item”, paste:
taskkill /F /FI ‘STATUS eq NOT RESPONDING’ - Name it “Force Quit”
Double click that when stuff hangs. It targets any process Windows marks as “Not Responding”. It can kill things you did not expect, so save work often.
- When whole system slows or locks hard
If mouse still moves but everything drags:
- Press Ctrl + Shift + Esc
- Go to “Performance” tab
Check CPU, Memory, Disk.
If Disk is at 100% for a long time, some background thing might be thrashing.
On Windows 10 or 11, common causes:
- Broken antivirus or two antivirus tools fighting
- Old HDD with bad sectors
- Too little RAM, system swapping to disk
- Buggy drivers, often GPU or audio
Update graphics drivers from NVIDIA or AMD site, not only Windows Update.
Check “Startup apps” tab in Task Manager and turn off junk you do not need.
- When even Task Manager will not open
Try these in order:
-
Press Ctrl + Alt + Delete, see if the blue screen menu appears
If it does, pick “Task Manager” or click the power icon and do a normal Restart -
If screen frozen for more than 1 to 2 minutes and no input works, hold the power button for 5 to 10 seconds to force shutdown
That risks data loss, so treat it as last step, but sometimes there is no option.
- Reduce future freezes
This helped on my old desktop that locked every day.
- Update Windows fully
- Update GPU drivers
- Uninstall old toolbars, “optimizers”, RGB garbage, etc
- Turn off overclocks in BIOS or GPU tools
- Run “Windows Memory Diagnostic” from Start menu to test RAM
- Run “chkdsk” on your system drive
Command prompt as admin, run:
chkdsk C: /F
Answer Y and reboot
- Last resort for chronic freezes
If you see constant “Not Responding” across many programs:
- Check Event Viewer
Win + X → Event Viewer
Look under Windows Logs → System for repeated disk, driver, or “AppHang” errors - If disk errors appear, back up fast and replace the drive
- If clean and system is old or bloated, a clean reinstall of Windows sometimes saves more time than hunting ghosts for weeks
If you share which app hangs and your Windows version, people here can suggest more focused steps.
Couple of extra angles on top of what @techchizkid already dropped:
- Use the “hidden” classic Task Manager
Sometimes the modern Task Manager itself hangs. You can trigger the old-school one via:
- Press Ctrl + Alt + Delete
- Hold Ctrl and click “Task Manager”
On some builds it spawns the simpler legacy interface that can kill stuff when the fancy one is stuck.
- Kill by window, not by process name
If you can still click the frozen window at all:
- Press Win + R
- Type:
cmdand hit Enter - Run:
taskkill /F /FI 'STATUS eq NOT RESPONDING'
@techchizkid suggested this as a shortcut, which is useful, but I’d be careful: this nukes all not-responding apps. I prefer to run it manually so you can see exactly when it runs and correlate what dies with what you had open.
- Turn off “Fast Startup”
This one is weirdly effective for repeat freezes when you’ve been hard powering off a lot.
- Control Panel → Hardware and Sound → Power Options → “Choose what the power buttons do”
- Click “Change settings that are currently unavailable”
- Uncheck “Turn on fast startup”
Fast Startup + repeated forced shutdowns can leave drivers in a half-broken state that makes hangs more likely.
- Check for buggy overlays & hooks
A lot of “this program won’t close” issues are from junk injecting itself into other apps. Common culprits:
- GPU overlays (GeForce Experience overlay, Radeon overlay)
- Screen recorders / game recorders
- FPS counters, overclock tools, RGB control junk
Try a clean boot:
- Win + R →
msconfig→ Services tab → check “Hide all Microsoft services” → “Disable all” - Startup tab → open Task Manager → disable everything non‑essential
Reboot and see if the hangs still happen. If they stop, re‑enable stuff one chunk at a time until the problem returns.
- Use Reliability Monitor, not just Event Viewer
For “why is my system locking up all the time,” Reliability Monitor is more human-readable:
- Win + R →
perfmon /rel
You’ll get a timeline of crashes and “AppHang” events.
Look for: - Same exe hanging repeatedly
- Same driver or DLL mentioned a lot
That can tell you if it’s one crappy app or something lower-level like a driver.
- Turn off hardware acceleration in repeat offender apps
Browsers, Discord, Steam, some editors:
- Settings → turn OFF “Use hardware acceleration when available”
If those stop freezing after that, your GPU driver is probably the real issue, not the app.
-
Try “Wait it out” when Disk or RAM is pegged
I’ll disagree slightly with the pure “just kill it” approach: if you see Disk at 100% and the light is solid, sometimes Windows is trying to recover a dying drive or copying memory to pagefile. Killing everything immediately can sometimes make corruption worse.
If the drive indicator is still blinking and you’re hearing disk activity, give it 2–3 minutes before the nuclear option, unless you’ve already been stuck for ages. -
Use
sfcanddismonce, not daily
After several forced shutdowns, system files can get messy. One-time cleanup:
- Open Command Prompt as admin
- Run:
sfc /scannow
then:
DISM /Online /Cleanup-Image /RestoreHealth
Reboot.
Do this once when you’ve had a bunch of hard resets, not every week.
- If the mouse still moves but nothing responds
Try switching desktops instead of instantly forcing off:
- Win + Ctrl + D to create a new desktop
- Win + Tab to see if you can move to another desktop and open Task Manager there
Occasionally the frozen app locks one desktop while the system itself is mostly fine.
- Long term: watch for patterns
Write down (or mentally note) for the next few freezes:
- Which app was on screen
- What you were doing (opening file, alt‑tabbing, gaming, video call, waking from sleep, etc.)
- How long the PC had been on
If the pattern is “always after sleep” or “always when using the same game + browser,” you’re probably hitting a specific driver conflict, not generic “Windows sucks.”
If you share which programs hang most often and whether you’re on HDD/SSD and how much RAM, folks can probably narrow it down a lot more. Right now your description sounds like a mix of apps crashing and an underlying system resource or driver problem.