How to Uninstall Programs in Windows 11 via Command Prompt
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%%
- Click the Start button and search for Command Prompt.
- Right-click the app and choose Run as administrator.

The Command Prompt window will open. We will use a tool called WMIC to manage your software.
- Type the following command and press Enter:
wmic- Now, type this command to see a list of all your installed programs:
product get name

Look through the list to find the exact name of the program you want to remove.
- Use the following command to start the removal, replacing “program name” with the actual name you found in the list:
product where name="program name" call uninstall- For example, if you wanted to remove a program called “Example App,” you would type:
product where name="Example App" call uninstall- Type Y when asked to confirm, and press Enter.

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?
Leave a Reply