Skip to content
Follow
Windows

How to Kill a Process in Windows 11

Richard
Written by
Richard
Feb 10, 2026 Updated Sep 15, 2026 5 min read
How to Kill a Process in Windows 11
How to Kill a Process in Windows 11

Killing a frozen process in Windows 11 stops an unresponsive app from draining your PC speed and system memory. Task Manager is the built-in tool that lets you force-close any stubborn program currently running on your screen.

Advertisement

Press Ctrl+Shift+Esc on your keyboard to open this tool instantly. Find the frozen program in the list and click End task to shut it down right away.

⚡ Quick Answer

To kill a frozen process in Windows 11, open Task Manager by pressing Ctrl+Shift+Esc. Select the unresponsive application from the Processes tab and click “End task.” This forces the program to close immediately.

Advertisement

Method 1Using Windows Task Manager

Task Manager , a built-in Windows utility, displays all active programs and background tasks on your computer. Users rely on this tool to shut down unresponsive applications.

This closes the frozen program immediately.

How to open Task Manager:

  1. Press CTRL + SHIFT + Esc keys together on your keyboard.

OR

  1. Press CTRL + ALT + DELETE, then click Task Manager on the screen.

Once Task Manager opens:

  1. Click More details at the bottom if it looks simple.
  2. Go to the Processes tab at the top.
  3. Look through the list and find the program that’s frozen or using a lot of memory.
  4. Select the program name.
  5. Do one of these:
    • Press the Delete key on your keyboard, OR
    • Right-click the program and choose End task, OR
    • Click the End task button at the bottom right.
Windows 11 Task Manager ending a task
Windows end or kill task in the Task Manager

Task Manager helps you kill a process in Windows 11 when an app freezes or stops responding. Open the Processes tab, select the frozen program from the list, and click the End task button at the bottom right corner of the window. You can also right-click the program and choose End task, or press the Delete key on your keyboard to force it to close.

Advertisement

A confirmation prompt may appear; click End process to finalize.

Windows 11 lets you expand the view to manage child processes (smaller, related tasks running underneath a main application). Clicking the small arrow next to a main program name reveals this nested hierarchy. Managing child processes independently halts specific sub-tasks without closing the parent application.

Method 2Using Command Prompt with taskkill

Why use this? Use Command Prompt if you prefer managing applications with text commands.

What happens when you do this? The program closes immediately without displaying confirmation pop-ups.

Advertisement

Step 1Open Command Prompt or PowerShell

  1. Search for Command Prompt or PowerShell in the Start menu and open it.
  2. Flag: If you need to close system processes, right-click and choose Run as administrator.

Step 2See all running programs

Enter the following command and press Enter:

tasklist

Output resembles this format:

Image Name PID Session Name Session# Mem Usage
========================= ======== ================ =========== ============
System Idle Process 0 Services 0 8 K
System 4 Services 0 144 K
msedge.exe 652 Console 1 26,528 K
winlogon.exe 740 Console 1 12,280 K

Advertisement

Step 3Stop a program by name

Command Prompt lets you kill a process in Windows 11 by typing a specific command when you know the exact name of the program. Open Command Prompt and type taskkill /IM msedge.exe /F to force Microsoft Edge or any other running software to quit immediately without needing the mouse.

taskkill /IM ImageName /F

Example:

taskkill /IM msedge.exe /F

This action forces Microsoft Edge to quit.

Process IDs (PIDs), the unique numbers assigned to running applications in Task Manager, provide another termination vector. Targeting a specific numeric identifier terminates that exact instance.

Advertisement
taskkill /PID 652 /F

Method 3Using PowerShell with Stop-Process

Why use this? PowerShell provides advanced scripting capabilities for managing single or multiple programs simultaneously.

What happens when you do this? The targeted applications terminate instantly.

Step 1Open Windows PowerShell

  1. Search for PowerShell in the Start menu and open it.
  2. Flag: To stop system processes, right-click and choose Run as administrator.

Step 2List all running programs

Enter the following command and press Enter:

Get-Process

Advertisement

Output resembles this format:

Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName
------- ------ ----- ----- ------ -- -- -----------
...
466 18 4544 23592 2.25 3440 1 msedge
...

Step 3Stop a program by name

Execute this command, substituting ProcessName with the actual target:

Stop-Process -Name "ProcessName" -Force

Example:

Advertisement
Stop-Process -Name "msedge" -Force

Step 4Stop a program by process ID

Execute this command:

Batch termination requires comma-separated Process IDs (PIDs)—the unique numeric identifiers assigned to running tasks. Entering an argument like "1234,5678" closes multiple unwanted applications simultaneously in Windows 11.

Stop-Process -ID 3440,652,740 -Force

Summary

Task Manager is the easiest way to kill a process in Windows 11 for most users by finding the program and clicking End task. Advanced users can also use command-line tools like Command Prompt or PowerShell when standard windows fail to respond or close normally.

  • Task Manager is the easiest way for most users. Just open it, find the program, and click End task.
  • taskkill command works when you like using the keyboard. Type a command and press Enter.
  • Stop-Process command in PowerShell gives you the most control and lets you stop multiple programs at once.

Mastering process termination keeps your Windows 11 workstation stable when applications like Microsoft Word freeze. Prompt intervention prevents performance degradation and guards against unsaved data loss.

Learn advanced utility management through this guide: How to Use Task Manager in Windows 11

Review these companion tutorials for command-line access methods:

How to Open Command Prompt in Windows 11

How to Open PowerShell in Windows 11

Maintaining optimal system performance requires steady oversight of active workloads.

How do I kill unwanted processes in 🪟 Windows 11?

To kill unwanted processes in Windows 11, open Task Manager, go to the 'Processes' tab, find the problematic task, and click 'End task' to close it.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

Advertisement

📚 Related Tutorials

How to Enable or Disable Task Manager in Windows 11
Windows How to Enable or Disable Task Manager in Windows 11
How to Run Apps as Administrator in Windows 11
Windows How to Run Apps as Administrator in Windows 11
How to Keep Windows 11 Task Manager Always on Top
Windows How to Keep Windows 11 Task Manager Always on Top
How to Repair Microsoft Edge in Windows 11
Windows How to Repair Microsoft Edge in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *