Other ANRHigh

Application Not Responding: Causes and Quick Fixes

The article explains why the 'Application Not Responding' system message occurs and offers proven solutions for Windows, macOS, and Linux. You'll learn how to force-close hung processes, diagnose conflicts, and prevent recurrence.

Updated at February 16, 2026
5-15 min
Medium
FixPedia Team
Применимо к:Windows 10/11macOS 12+Ubuntu 20.04+Android 9+

What the "Application Not Responding" Error Means

The "Application Not Responding" error is a system notification from the operating system that appears when a program stops reacting to user actions or system requests for several seconds. Typically, the application window dims, and the status (Not Responding) appears in the title bar on Windows or (Not Responding) on macOS. In Linux desktop environments (GNOME, KDE), similar behavior is often accompanied by an hourglass cursor or a message in the task manager.

This is not a fatal error (unlike a crash that closes the window), but it renders the program useless until the process is terminated. Most often, the problem is resolved by force-quitting, but if it recurs, diagnostics are required.

Common Causes

Application freezes usually stem from resource conflicts or corrupted data. Here are the most frequent culprits:

  1. Insufficient RAM or CPU resources. When the system exhausts free RAM or a powerful process occupies 100% of CPU cores, the OS suspends background processes, leading to "freezes".
  2. Conflict with other running software. Often to blame are antiviruses, system "optimization" utilities, virtual device drivers (Docker, VirtualBox), or other programs that inject code into processes.
  3. Corruption of executable files or libraries. Files like .exe, .dll (Windows), .dylib (macOS), or .so (Linux) can become damaged due to a write error, virus, or incorrect update.
  4. Outdated or conflicting drivers. Graphics card, chipset, or peripheral drivers are a common cause, especially after an OS update or new hardware installation.
  5. Insufficient access permissions. The application attempts to write to a protected folder (e.g., C:\Program Files or /usr/bin) without administrator/superuser rights.
  6. Hard disk issues. Bad sectors, lack of free space (especially on the system partition), or a slow HDD can cause timeouts when reading files.
  7. Malware. Some trojans or cryptominers inject code into legitimate processes, disrupting their operation.
  8. Bugs within the application itself. Memory leaks, infinite loops, or improper exception handling in the program's code.

Method 1: Task Manager (Universal Method)

The fastest way to close a frozen application is to terminate its process via the system task manager. Steps vary by OS.

On Windows

  1. Press Ctrl+Shift+Esc or Ctrl+Alt+Delete → select Task Manager.
  2. In the Processes tab, find the problematic application. It may be marked with the status "Not Responding".
  3. Select it and click "End task".
  4. If the process doesn't disappear, switch to the Details tab in the manager, find the corresponding *.exe process, and terminate it via the "End task" button.

On macOS

  1. Press Cmd+Option+Esc — the Force Quit Applications window will open.
  2. Select the frozen application and click "Force Quit".
  3. Alternatively: open Activity Monitor (via Spotlight or /Applications/Utilities), find the process, and quit it.

On Linux (GNOME/KDE)

  1. Press Ctrl+Alt+Backspace (if enabled) or open System Monitor from the applications menu.
  2. Find the process by name, select it, and click "End Process".
  3. In the terminal, you can use xkill (install the x11-utils package if necessary): type xkill, then click on the frozen application's window.

⚠️ Important: Unsaved data in the application will be lost. If it's critical (e.g., a document in an editor), wait 1-2 minutes — sometimes the program "recovers".

Method 2: Hard Reboot the System

If the Task Manager is also not responding or terminating the process doesn't help, perform a hard reboot:

  1. Press and hold the power button on your computer/laptop for 5-10 seconds until it shuts down.
  2. Wait 10-15 seconds, then press the power button again to turn it on.
  3. After the system boots, check if the OS offers to restore open documents (e.g., Windows may prompt to restore your session).

This method is universal but not recommended for servers or high-load systems, as it can lead to data corruption on the disk. Use it only when other methods are unavailable.

Method 3: Update Software and Drivers

Outdated software is one of the main causes of conflicts.

For Windows

  1. Open Windows Settings (Win+I) → Update & SecurityWindows UpdateCheck for updates. Install all critical and recommended updates.
  2. Update drivers:
    • Graphics cards: visit the NVIDIA/AMD/Intel website and download the latest version.
    • Chipset and peripherals: use Device Manager → right-click the device → Update driver.
    • For automatic updates, you can use Windows Update or utilities like Driver Booster (with caution).

For macOS

  1. Open System SettingsSoftware Update. Install all available updates.
  2. For drivers (if using third-party ones, e.g., for an eGPU), check the manufacturers' websites.

For Linux (Ubuntu/Debian)

sudo apt update && sudo apt upgrade -y

For graphics card drivers:

  • NVIDIA: sudo ubuntu-drivers autoinstall
  • AMD/Intel: usually built into the kernel.

Method 4: Check System File Integrity

Corrupted system libraries or executable files can cause freezes.

Windows

  1. Open Command Prompt or PowerShell as an administrator.
  2. Run:
sfc /scannow

This command will scan and repair protected system files. 3. If sfc doesn't help, use DISM:

DISM /Online /Cleanup-Image /RestoreHealth
  1. After completion, restart your PC.

macOS

  1. Launch Disk Utility from the Utilities folder.
  2. Select your system disk and click "First Aid""Run".
  3. For a deeper check, restart your Mac into Recovery Mode (hold Cmd+R at startup) and run First Aid again.

Linux

# To check the filesystem of the root partition (requires reboot into single-user mode)
sudo fsck -f /
# To verify packages (Debian/Ubuntu)
sudo dpkg --verify

Method 5: Clean Boot (Windows) / Safe Mode (macOS/Linux)

If the problem is caused by a conflict with startup services or programs, perform a clean boot:

Windows

  1. Press Win+R, type msconfig, and press Enter.
  2. Go to the "Services" tab → check "Hide all Microsoft services" → click "Disable all".
  3. Go to the "Startup" tab → open "Task Manager" → disable all items.
  4. Click "Apply" and "OK", then restart your computer.
  5. If the problem disappears, re-enable services/startup items one by one to find the culprit.

macOS

  1. Restart your Mac and immediately hold the Shift key to boot into Safe Mode.
  2. In Safe Mode, only critically necessary system extensions are loaded.
  3. If the application works normally, the issue is in the cache or third-party extensions. Clear the cache (~/Library/Caches) and check login items in System Settings → Users & Groups.

Linux

  1. Restart and at the boot screen select "Advanced options""Recovery mode" or add single to the kernel parameters.
  2. In single-user mode, check autostart in ~/.config/autostart/ and system services (systemctl list-units --type=service).

Preventing Future Freezes

To minimize the risk of the "Application Not Responding" error:

  1. Regularly update your OS and all installed programs. Enable automatic updates where possible.
  2. Avoid running multiple heavy applications simultaneously (video editors, games, virtual machines), especially on weaker systems with low RAM (4-8 GB).
  3. Do not use pirated or unofficial software — it often contains modified libraries that cause conflicts.
  4. Monitor resource usage via Task Manager/Activity Monitor. If a process constantly maxes out CPU or memory, find an alternative.
  5. Perform regular disk error checks and defragmentation (on HDDs).
  6. Install applications only from official sources (Microsoft Store, App Store, developer websites).
  7. Use an SSD instead of an HDD — this significantly reduces system and application response times.
  8. Configure your antivirus to exclude folders with active projects, preventing it from blocking file access in real-time.

If the problem occurs only with one specific program, check for updates or reinstall it. If freezes are random, focus on diagnosing drivers and software conflicts.

F.A.Q.

Why does an application stop responding?
How to prevent program freezes?
What to do if Task Manager won't open?
Can this be related to a virus?

Hints

Open Task Manager
End the process
Restart your computer
Update software and drivers
Check system for errors
Perform a clean boot

Did this article help you solve the problem?

FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community