How can I force quit frozen apps on Windows without restarting

My Windows 10 PC sometimes locks up when apps stop responding, and I can’t always click the close button or even reach Task Manager. I’m looking for reliable methods or shortcuts to force quit frozen programs without having to reboot and lose my work. What are the best ways to do this safely on Windows?

Happens to me on Win10 too. Here are the most reliable ways I use when things freeze and Task Manager is hard to reach.

  1. Keyboard shortcut to kill the current frozen app

    1. Click the frozen window once to make sure it is “active”.
    2. Press Alt + F4.
    3. If Windows asks to close it, hit Enter.
      This works a lot when a program stops responding but the system still accepts keyboard input.
  2. Use the “End task” dialog when Task Manager will not open

    1. Press Ctrl + Shift + Esc. Wait a few seconds.
    2. If Task Manager does not appear, press Ctrl + Alt + Del.
    3. On the blue screen, pick Task Manager.
    4. Find the app under “Processes”, select it, press Delete or click “End task”.
      Tip, click “More details” once so Windows remembers the full view.
  3. Create a desktop “kill frozen apps” shortcut
    This helps when you cannot reach Task Manager but the mouse still works.

    1. Right click desktop → New → Shortcut.
    2. In “Type the location”, paste:
      taskkill /f /fi ‘status eq not responding’
    3. Name it something like “Kill Frozen Apps”.
    4. Optional, right click shortcut → Properties → Shortcut key, set something like Ctrl + Alt + K.
      When apps hang, run that shortcut. It force quits any “Not Responding” process.
  4. Kill a specific app by name with a shortcut
    Works well for apps that lock up often, like a certain game or browser.

    1. Find its process name from Task Manager once, for example:
      chrome.exe, excel.exe, outlook.exe, game.exe.
    2. New desktop shortcut with:
      taskkill /f /im chrome.exe
    3. Double click that when Chrome freezes.
      You can make one shortcut per problem app.
  5. Use Run box when mouse is dead but keyboard works

    1. Press Win + R.
    2. Type:
      taskkill /f /fi ‘status eq not responding’
      then Enter.
      If the shell still responds, Windows will terminate all non responding apps.
  6. Log out instead of full restart
    If the whole desktop is stuck but keyboard still responds:

    1. Press Ctrl + Alt + Del.
    2. Choose “Sign out”.
    3. Log back in.
      You lose open apps, but it is faster than a cold restart and less risk for file corruption.
  7. For frequent freezes, quick checks
    Not a fix for the moment, but helps long term.

    • Check RAM and CPU in Task Manager when it does respond. High usage often matches the freezes.
    • Update GPU drivers and Windows Update.
    • Remove old context menu shell extensions using Sysinternals Autoruns.
    • Check disk health with “chkdsk /f” and SMART tools like CrystalDiskInfo.

I use Alt + F4 and the “taskkill /f /fi ‘status eq not responding’” shortcut the most. They save a lot of forced reboots when Windows decides to have a small meltdown.

Couple of extra tricks on top of what @andarilhonoturno said, especially for those “everything’s frozen but not quite dead” moments.

  1. Use the hidden power menu
    If the mouse is useless but keyboard still responds a bit:

    • Press Win + X
    • Then press U
    • Then press I to “Sign out” or R to “Restart”
      Yeah, it’s not truly “force quitting one app”, but signing out often kills the stuck processes without a hard power off. I actually prefer this over his Ctrl + Alt + Del → Sign out method because Win + X sometimes responds when the secure screen doesn’t show up quickly.
  2. Try the classic “window menu” kill
    On some older / janky apps:

    • Make sure the frozen window is active
    • Press Alt + Space
      You might get the tiny window menu (Restore / Move / Close).
    • Press C for Close
      If Windows can still talk to the app, it’ll close it a bit more cleanly than taskkill.
  3. Use tasklist + taskkill when you can still type
    If you want to avoid murdering all “Not Responding” apps like in that shortcut and be a bit more surgical:

    • Win + R
    • Type cmd and hit Enter
    • In the black window:
      • tasklist to see the list of processes
      • Then taskkill /f /pid <PID> for the exact one that is hung
        Slightly nerdy, but safer when you don’t want to nuke something like your backup or VMware by accident.
  4. Use a third party “always on top” task killer
    This is where I kinda disagree with only using built in tools. Windows tools are fine, but when freezes are frequent, a lightweight 3rd party process manager that stays in the tray and can be called with a hotkey is way more convenient. Examples: Process Explorer or Process Hacker.

    • Set their window to “Always on top”
    • Assign a global hotkey in their settings to bring them to front
      Even when Explorer is choking, these can sometimes pop up and kill the bad app. I’ve had cases where Task Manager just refused while Process Explorer happily ended the same task.
  5. Kill & restart Explorer only
    Sometimes it looks like every app is frozen, but really it is just Explorer (taskbar, desktop, Start menu) dying. Instead of rebooting:

    • Press Ctrl + Shift + Esc to open Task Manager
    • Go to “Details” tab
    • Find explorer.exe, select it, click “End task”
    • Then File → Run new task → type explorer.exe, Enter
      If this works, it brings your desktop back and a lot of “frozen” stuff suddenly responds again. This saved me from tons of unnecessary reboots.
  6. Use Safe Mode as a last resort pattern finder
    Not exactly a force quit trick, but if you’re doing this daily, boot into Safe Mode and try to repeat your usual workflow.

    • If the freezes vanish, it’s usually drivers, startup programs, or shell extensions.
    • If it still freezes in Safe Mode, you’re probably dealing with hardware (RAM / disk) or a deeper OS mess.
      It helps avoid living forever on taskkill commands like some kind of Windows field medic.
  7. Hardware check angle
    Since you mentioned frequent lockups:

    • Run sfc /scannow from an elevated Command Prompt
    • Then DISM /Online /Cleanup-Image /RestoreHealth
    • Check RAM with Windows Memory Diagnostic
      When Windows is so touchy that even Task Manager is hard to reach, something under the hood is often not happy. Forcing apps closed is a workaround, not a cure.

Personally, my “fast combo” is:

  • If only one app froze: Alt + F4 or Alt + Space then C
  • If half the system is laggy: bring up Process Explorer with a hotkey and kill the worst offender
  • If shell is half dead: restart explorer.exe
  • If nothing listens: Ctrl + Alt + Del → Sign out → log back in instead of a full power cycle

It’s not pretty, but it keeps you from mashing the power button like it’s 1999.

Couple of extra angles that complement what @reveurdenuit and @andarilhonoturno already covered, focusing on “don’t touch the power button” survival tactics.


1. Use power profiles to prevent lockups

Not a direct “force quit” trick, but it reduces how often apps freeze so you don’t have to kill them:

  • Switch to High performance or Ultimate performance when gaming or editing:
    • Win + R → powercfg.cpl → choose High performance.
  • On weak laptops, aggressive power saving can cause stutters that look like freezes.

I’d actually skip constantly nuking tasks with taskkill /f like they suggested as a first reaction. It is handy, but over time you increase the chance of corrupted app data.


2. Strip your startup and context menu

Instead of new tools, use built in stuff to reduce the number of times you need to force quit:

  • Task Manager → Startup tab → disable all non essentials (messengers, updaters, game launchers).
  • Use something like Autoruns only after you understand what is loading; turning off random entries can break things.

This indirectly keeps Windows 10 responsive so Alt + F4 and Task Manager still work when you need them.


3. Virtual desktops as a “soft escape”

If one desktop is totally jammed visually but the OS is still breathing:

  1. Press Win + Ctrl + D to create a new virtual desktop.
  2. Your frozen app stays on Desktop 1, you move to Desktop 2.
  3. From the clean desktop, open Task Manager or Command Prompt and kill the bad process.

This is often smoother than signing out, and you keep more of your work alive. I like this more than immediately logging out as suggested earlier, since sign out kills everything.


4. Limit apps that can hog the system

A more advanced option for chronic offenders:

  1. Open Task Manager → Details tab.
  2. Right click a heavy app → Set priority → lower it to Below normal or Low.
  3. For some apps, also set processor affinity so they only use a subset of cores.

Result: when those apps misbehave, the rest of the system stays responsive long enough for you to close them normally instead of hard killing.


5. Scheduled cleanup to keep things stable

If you hit freezes mostly after the system has been on for days:

  • Schedule a nightly restart:
    • Task Scheduler → basic task → shutdown /r /t 0 at 3 AM, for example.
  • Clear temp files regularly with Storage Sense:
    • Settings → System → Storage → turn on Storage Sense.

Not as “sexy” as shortcuts, but it prevents the build up of junk that often leads to the very hangs you are trying to escape from.


On tools / “product” angle

If you consider bringing in a dedicated process manager instead of only built in tools, treat it like this product category in general:

Pros of a dedicated task killer / process manager:

  • Often responds when Task Manager is sluggish.
  • Can assign global hotkeys to instantly bring it to front.
  • Better sorting and filtering than vanilla Task Manager.
  • Can keep an “always on top” small window for fast kills.

Cons:

  • Another program running all the time, using RAM and CPU.
  • Misuse can kill critical system processes and cause crashes.
  • Some tools get flagged by antivirus or cause driver conflicts.
  • Extra complexity for something Windows can already do in most cases.

Compared with what @reveurdenuit and @andarilhonoturno suggested, I would not rely solely on heavy third party tools if your machine is already struggling. Start with built in options, then add one lightweight utility only if you really need it.


If you put all of this together:

  • Prevention: power plan, startup cleanup, scheduled restarts.
  • During a freeze: virtual desktops first, then Task Manager / shortcuts.
  • Only then: aggressive taskkill /f or logging out when everything else fails.

That order keeps your system healthier while still avoiding full reboots most of the time.