Home Windows How to Uninstall Programs in Windows 11 via…
Windows

How to Uninstall Programs in Windows 11 via Command Prompt

How to Uninstall Programs in Windows 11 via Command Prompt
Richard
Written byRichardTech Writer, IT Professional
Sep 7, 2021 Updated Apr 14, 2026 2 min read

Sometimes, your computer gets cluttered with apps you no longer use. While most people use the Settings app, you can also remove software using the Command Prompt. This is a great skill to have if you want to clean up your system quickly.

Why use the Command Prompt?

Using the Command Prompt is often faster than clicking through menus. It is a powerful way to manage your files and programs directly, which can be helpful if your computer is running slowly or you are low on storage space.

What happens when you are done?

Once you finish these steps, the chosen program will be completely removed from your system. This frees up space and keeps your computer tidy.

Steps to Uninstall Programs

Note: You must have administrative access to perform these steps. %%LNK0%%

  1. Click the Start button and search for Command Prompt.
  2. Right-click the app and choose Run as administrator.
Windows 11 Command Prompt running with administrator privileges for software management

The Command Prompt window will open. We will use a tool called WMIC to manage your software.

  1. Type the following command and press Enter:
  2. wmic
  3. Now, type this command to see a list of all your installed programs:
  4. product get name
Command Prompt window displaying the wmic product list of installed programs

Look through the list to find the exact name of the program you want to remove.

  1. Use the following command to start the removal, replacing “program name” with the actual name you found in the list:
  2. product where name="program name" call uninstall
  3. For example, if you wanted to remove a program called “Example App,” you would type:
  4. product where name="Example App" call uninstall
  5. Type Y when asked to confirm, and press Enter.
Executing the wmic uninstall command to remove software in Windows 11

Once the process finishes, you will see a message saying “Method execution successful.” This confirms the program is gone.

Summary

Uninstalling software through the Command Prompt is a fast alternative to the standard Windows interface. By using the wmic tool, you can identify and remove unwanted programs efficiently. Always double-check the program name before you run the uninstall command to ensure you do not remove the wrong application.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights 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.

2452 articles → Twitter

📚 Related Tutorials

How to Open Command Prompt at Boot in Windows 11
Windows How to Open Command Prompt at Boot in Windows 11
How to Use the Run as Command in Windows 11
Windows How to Use the Run as Command in Windows 11
How to Delete Files in Windows 11
Windows How to Delete Files in Windows 11
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11

Leave a Reply

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