How to Kill a Process in Windows 11
You can stop a frozen program in Windows 11 by opening Task Manager and ending the unresponsive application.
Task Manager is a built-in Windows tool that shows you all the programs and background processes currently running on your PC. When a program freezes, it can hog your computer’s resources, making it impossible to close normally.
Accessing Task Manager is typically done by pressing Ctrl+Shift+Esc. From there, you can select the problematic application under the “Apps” section and click “End task” to force it closed.
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
Why use this? Task Manager is a built-in Windows tool that shows you all the programs and background tasks currently running. You can use it to shut down an app that’s misbehaving.
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.
After opening Task Manager, click ‘More details’ if you see the simple view to access all options for managing running applications.
You might see a pop-up asking if you’re sure you want to stop the program. Click End process to confirm.
Tip: If a program has smaller related tasks running underneath it (sometimes called child processes), you can click the small arrow next to the main program name. This lets you expand the view and stop only those specific smaller parts if you need to.
Method 2Using Command Prompt with taskkill
Why use this? If you’re comfortable with typing commands, you can stop a program using Command Prompt or Windows PowerShell. These methods offer more control.
What happens when you do this? The program closes immediately without any 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
Type this command and press Enter:
tasklist
You’ll see a list like this:
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
You can kill a process in Windows 11 using the command prompt by typing the ‘taskkill’ command followed by the program’s image name, like ‘msedge.exe’, and ‘/F’ to force it to close.
taskkill /IM ImageName /FExample:
taskkill /IM msedge.exe /FThis forcefully closes Microsoft Edge.
Tip: You can also stop a program using its PID (the number in the list). For example:
taskkill /PID 652 /FMethod 3Using PowerShell with Stop-Process
Why use this? PowerShell is a more powerful command tool. It lets you stop one or many programs at the same time.
What happens when you do this? The program or programs close immediately.
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
Type this command and press Enter:
Get-Process
You’ll see a list like this:
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
Use this command and replace ProcessName with the program name:
Stop-Process -Name "ProcessName" -ForceExample:
Stop-Process -Name "msedge" -ForceStep 4Stop a program by process ID
Use this command:
Stop-Process -ID 3440 -ForceBonus tip: You can stop several programs at once by listing their IDs separated by commas:
Stop-Process -ID 3440,652,740 -ForceSummary
When a program freezes or slows down your computer, you have three main ways to stop it: Task Manager for ease of use, the ‘taskkill’ command for keyboard users, and PowerShell for advanced control.
- 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.
Learning these methods helps keep your computer running smoothly and lets you fix problems when apps don’t respond.
If you want to learn more about using Task Manager, check out this guide: How to Use Task Manager in Windows 11
For more about opening Command Prompt and PowerShell, see these guides:
How to Open Command Prompt in Windows 11
How to Open PowerShell in Windows 11
Good luck managing your Windows 11 processes!
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!