Windows Troubleshooting Guide

What to Do When a Program Freezes in
Windows 10 & Windows 11

A practical step-by-step guide for safely closing a not responding app, saving what can still be saved, checking system resources, and preventing the same program from freezing again.

⊞ Windows 10 ⊞ Windows 11 🧊 Frozen App ⚙ Task Manager 💻 CMD & PowerShell 🕐 8 min read

What Does “Program Not Responding” Mean in Windows 10 and Windows 11?

When a window shows “Not Responding”, Windows is telling you that the application is no longer processing user input normally. The program may be waiting for a slow disk operation, a network response, a driver, a blocked file, a plug-in, a damaged setting, or simply more CPU or memory than the system can currently provide.

A frozen program does not always mean Windows itself is broken. In many cases, only one application is stuck while the rest of the system is still healthy. The safest approach is to pause for a moment, check whether the app is still working in the background, and only then force close it if needed.

⚠️
Important Force closing a frozen program can discard unsaved changes. Try to save, wait briefly, or use the app's recovery feature before ending the process.
🧊

Frozen window

The app window stops repainting, buttons do not react, or the title bar shows “Not Responding”.

🖱️

System still reacts

The mouse, keyboard shortcuts, Start menu, or other apps still work. Usually only one program is stuck.

💾

Data may be at risk

Documents, edits, downloads, archives, and project files may not be fully written to disk yet.

🔁

Repeated freezes matter

If the same app freezes often, check updates, add-ins, drivers, disk health, and system resources.

Before You Force Close a Frozen Program in Windows

Do not immediately restart the computer unless the entire system is unusable. A short delay can prevent data loss, especially in programs that autosave, export files, compress archives, render video, sync to cloud storage, or write large databases.

  1. Wait 30–60 seconds. If the app is processing a large file, it may recover by itself.
  2. Do not click repeatedly. Extra clicks can queue more actions and make the app look worse.
  3. Check disk and CPU activity. If the drive light is active or the fan is loud, the app may still be working.
  4. Try keyboard shortcuts. Press Ctrl + S to save, or Esc to cancel a stuck dialog.
  5. Look for hidden windows. Press Alt + Tab to check whether a confirmation dialog is waiting behind the frozen app.
💡
Quick check If the program froze after opening, saving, printing, exporting, scanning, or connecting to a network location, wait a little longer before ending it.

Quick Fixes for a Frozen Program in Windows 10 and Windows 11

Start with these low-risk actions before using advanced tools. They often fix temporary freezes without rebooting the whole PC.

Fix 01

Wait and cancel

Give the app a short time to finish. Press Esc if it is stuck on a loading, printing, export, or search operation.

Safest
Fix 02

Switch away and back

Use Alt + Tab to move to another window and return. Sometimes a hidden dialog or graphics redraw problem is the cause.

No restart
Fix 03

Close heavy background apps

Pause games, browsers with many tabs, virtual machines, video editors, or file compression tools that may be consuming RAM or CPU.

Performance

Fast decision table

Symptom Likely Cause Best First Action
Only one app says “Not Responding” The application is stuck, overloaded, or waiting for a file operation Wait briefly, try Ctrl + S, then use Task Manager if needed
Desktop, taskbar, or File Explorer is frozen Windows Explorer is stuck Restart Windows Explorer from Task Manager
Mouse moves, but keyboard shortcuts do not help The app may be blocking input or showing a hidden dialog Use Alt + Tab, then open Task Manager
Everything is frozen System-wide resource, driver, disk, or hardware issue Wait, then use Ctrl + Alt + Del; hard restart only as a last resort

How to Close a Frozen Program with Task Manager

Task Manager is the safest built-in tool for closing a single frozen program without restarting Windows. It lets you end only the app that is not responding while keeping the rest of the system running.

Open Task Manager

  1. Press Ctrl + Shift + Esc.
  2. If that does not work, press Ctrl + Alt + Del and choose Task Manager.
  3. In Windows 11, open the Processes page. In Windows 10, click More details if the compact view appears.
  4. Find the frozen app. It may show Not responding in the Status column.
  5. Select it and click End task.
Best practice End the application process, not random background services. If you are unsure what an entry is, search by the app name first or expand the process group in Task Manager.

What if Task Manager opens behind the frozen app?

Press Alt + Tab to switch to Task Manager. You can also press Ctrl + Alt + Del, choose Task Manager, and then use the keyboard arrow keys to select the frozen process.

What if Task Manager itself is slow?

Sort processes by CPU, Memory, or Disk. If one app is using extreme resources, close it first. If disk usage is stuck at 100%, wait before restarting because Windows may still be writing data.

Restart Windows Explorer When the Taskbar or Desktop Is Frozen

If the frozen “program” is actually the taskbar, Start menu, desktop, File Explorer, or right-click menu, the problem may be Windows Explorer. Restarting Explorer refreshes the shell without rebooting the computer.

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Find Windows Explorer in the process list.
  3. Select it.
  4. Click Restart.
  5. Wait for the taskbar and desktop icons to reload.
ℹ️
What changes Open File Explorer windows may close or refresh, but normal apps should remain open. Unsaved documents in other programs are usually not affected.

How to Force Close a Frozen Program with Command Prompt or PowerShell

If Task Manager does not respond or you want a precise command-line method, use taskkill in Command Prompt or Stop-Process in PowerShell.

Force close by program name in CMD

Open Command Prompt and replace notepad.exe with the executable name of the frozen program.

CMDtaskkill /im notepad.exe /f

Force close by process ID in CMD

If multiple windows of the same app are open, it is safer to close the exact process ID. You can find the PID in Task Manager by enabling the PID column on the Details tab.

CMDtaskkill /pid 1234 /f

Find heavy processes with PowerShell

This command lists the processes with the highest CPU time. It can help you identify which app is consuming resources.

PowerShellGet-Process | Sort-Object CPU -Descending | Select-Object -First 10

Force close a program with PowerShell

Replace ProgramName with the process name without .exe.

PowerShellStop-Process -Name "ProgramName" -Force
Do not close system processes blindly Avoid ending processes such as wininit.exe, csrss.exe, lsass.exe, or unknown driver-related processes. Ending the wrong process can log you out, restart Windows, or cause instability.

Use Resource Monitor to Find Why a Program Is Frozen

Resource Monitor can show whether an app is waiting on CPU, disk, memory, or network activity. It is useful when a program freezes repeatedly or when Task Manager does not provide enough detail.

  1. Press Win + R.
  2. Type resmon and press Enter.
  3. Open the CPU, Memory, Disk, and Network tabs.
  4. Look for the frozen app in the process list.
  5. Check whether it is using high disk activity, waiting for network connections, or consuming large amounts of RAM.
Resource Monitor Clue What It May Mean What to Try
High disk activity The app is reading or writing a large file, cache, archive, database, or update Wait, close other disk-heavy apps, check free disk space, then scan the drive if freezes repeat
Very high memory usage The system is running out of RAM and using the page file heavily Close browsers, games, virtual machines, editors, or large background apps
Network activity never completes The app is waiting for a server, cloud sync, mapped drive, VPN, or printer Disconnect the network task, pause sync, reconnect VPN, or open the file locally
CPU usage stuck high The app may be stuck in a loop, rendering, indexing, compiling, or processing data Wait if the task is expected; otherwise end the process and check app updates

How to Recover Unsaved Work After a Program Freezes

After a forced close, reopen the same program before deleting temporary files or rebooting again. Many applications detect an abnormal shutdown and offer document recovery.

Best recovery habit Open the program again immediately. Do not run cleanup tools, empty temporary folders, or restart several times before checking autosave and recovery prompts.

Why Programs Keep Freezing in Windows

If one freeze happens rarely, it may only be a temporary glitch. If the same program freezes often, look for a repeatable cause.

Common software causes

  • Outdated application version or damaged update.
  • Problematic browser extension, Office add-in, plug-in, codec, or shell extension.
  • Corrupted app cache, user profile, configuration file, or database.
  • App waiting for a missing network location, offline printer, cloud folder, or disconnected drive.
  • Antivirus scanning a large file while the app is trying to use it.

Common system causes

  • Low RAM or too many heavy programs open at the same time.
  • Very low free space on the system drive.
  • Disk errors, bad sectors, failing storage, or overloaded external drives.
  • Graphics driver, audio driver, printer driver, or USB device conflict.
  • Windows update, background indexing, backup, or synchronization running at the same time.

Advanced Fixes for Apps That Freeze Repeatedly in Windows

Use these steps when the same application freezes again and again, especially after updates, driver changes, new hardware, plug-ins, or system cleanup.

1. Update or repair the app

  1. Install the latest version of the program from its official source.
  2. Disable recently added plug-ins, add-ins, extensions, codecs, or templates.
  3. Use the app's built-in Repair option if available.
  4. If repair does not help, uninstall and reinstall the program.

2. Check Windows Reliability Monitor

Reliability Monitor shows application crashes, hangs, failed updates, and driver problems in a timeline view.

Run dialogperfmon /rel

Look for red error icons on the day the program froze. Expand the event to see the app name, faulting module, or error details.

3. Check Event Viewer for repeated application hangs

Event Viewer can show Application Hang or Application Error entries for stubborn freezes.

Run dialogeventvwr.msc

Open Windows LogsApplication, then look for events around the exact time of the freeze.

4. Check system files if many apps freeze

If many unrelated programs freeze, Windows components may be damaged. Open Command Prompt or Terminal as administrator and run:

CMDsfc /scannow

If SFC reports problems it cannot repair, run DISM and then repeat SFC:

CMDDISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

5. Check the disk if freezes happen during opening or saving files

Programs that freeze while opening, saving, exporting, copying, or loading projects may be affected by disk errors or a slow drive.

CMDchkdsk C: /scan

For external drives, replace C: with the correct drive letter.

How to Prevent Programs from Freezing in Windows

You cannot prevent every freeze, but the habits below reduce the risk and make recovery easier when a program stops responding.

Frequently Asked Questions About Frozen Programs in Windows

Q How long should I wait before closing a not responding program?
For normal apps, wait about 30–60 seconds. For large exports, backups, video rendering, game loading, archive extraction, or files stored on a network drive, wait longer if disk, CPU, or network activity is still visible.
Q Will ending a task damage Windows?
Ending a normal application is usually safe, although unsaved work can be lost. Ending critical Windows processes, drivers, security services, or unknown system processes can cause instability, sign-out, or a forced restart.
Q Why does the same program freeze every time I open a file?
The file may be damaged, too large, stored on a slow or unavailable location, blocked by antivirus scanning, or dependent on a missing font, plug-in, codec, template, or linked resource. Test with a different file and a local copy.
Q What should I do if the whole PC freezes?
Wait briefly, then try Ctrl + Alt + Del. If nothing responds and the PC stays frozen, a hard restart may be necessary. After rebooting, check Reliability Monitor, Event Viewer, disk health, drivers, and recent updates.
Q Can antivirus software make programs freeze?
Yes. Real-time scanning can slow or temporarily block large archives, installers, scripts, virtual machine disks, databases, and project folders. Do not disable protection permanently; instead, check security logs and use carefully scoped exclusions only when you trust the files.
Q Is a frozen program a sign of malware?
Not necessarily. Freezes are commonly caused by resource pressure, bugs, drivers, disks, plug-ins, or network waits. Malware is more likely if freezes are combined with unknown startup entries, disabled security tools, browser redirects, high background usage, or suspicious files.

Conclusion: The Safest Way to Fix a Frozen Program in Windows

When a program freezes in Windows, start with the safest steps: wait briefly, try to save, check for hidden dialogs, and close only the affected app through Task Manager. If the taskbar or desktop is frozen, restart Windows Explorer instead of rebooting the whole PC.

Use CMD, PowerShell, Resource Monitor, Reliability Monitor, and Event Viewer when the same app freezes repeatedly or when you need to identify the real cause. If freezes happen across many programs, check system files, disk health, drivers, startup apps, and available RAM.

Recommended order

Wait → save → check hidden dialogs → Task Manager → restart Explorer → Resource Monitor → app repair/update → system and disk checks. Use a hard restart only when Windows no longer responds to keyboard and mouse input.