Skip to content
Follow
Windows

How to Kill a Process in Windows 11

Richard
Written by
Richard
Feb 10, 2026 Updated Aug 13, 2026 4 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 a stuck program from draining your computer’s speed and memory. Task Manager is the main tool built into Windows 11 to force-close apps that stop responding or freeze your screen.

You can open this tool instantly by pressing Ctrl+Shift+Esc on your keyboard. From there, 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.

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.

What happens when you do this? The frozen program closes 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 serves as the primary tool for terminating unresponsive software in Windows 11. Launch the utility and click More details if a simplified view appears. Navigate to the Processes tab to locate the problematic program.

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? Command-line tools offer alternative methods for terminating software when you prefer text-based control.

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

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

Step 3Stop a program by name

Command Prompt accepts specific syntax to terminate running software when exact executable names are known. The taskkill utility forces applications to close. For example, typing taskkill /IM msedge.exe /F and pressing Enter forces Microsoft Edge to close immediately.

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.

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

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:

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

Several methods exist for terminating unresponsive software in Windows 11. Task Manager remains the standard GUI approach for ending tasks. Command Prompt utilities like taskkill or PowerShell cmdlets such as Stop-Process offer viable alternatives for command-line navigation.

  • 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.

📚 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 *