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.
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:
- Press
CTRL + SHIFT + Esckeys together on your keyboard.
OR
- Press
CTRL + ALT + DELETE, then click Task Manager on the screen.
Once Task Manager opens:
- Click More details at the bottom if it looks simple.
- Go to the Processes tab at the top.
- Look through the list and find the program that’s frozen or using a lot of memory.
- Select the program name.
- 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.

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
- Search for Command Prompt or PowerShell in the Start menu and open it.
- 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
- Search for PowerShell in the Start menu and open it.
- 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?
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.
No comments yet — be the first to share your thoughts!