Windows Guide · Updated March 2026

How to Uninstall Programs in
Windows 10 & Windows 11

A complete step-by-step guide covering every method — from the built-in Settings app to PowerShell commands and professional third-party uninstallers.

📖 8 min read 🖥 Windows 10 & 11 ⚙️ All Skill Levels ✅ Updated 2026

5 Ways to Uninstall Programs in Windows 10 and Windows 11

Uninstalling software you no longer need is one of the best ways to keep your PC fast, secure, and clutter-free. Windows 10 and Windows 11 both offer several built-in methods to remove applications — and there are excellent third-party tools that go even deeper.

Whether you're removing a Microsoft Store app, a classic desktop program, or stubborn bloatware, one of the five methods below will get the job done.

⚙️
Settings App
Recommended
🗂️
Control Panel
Classic
🪟
Start Menu
Quickest
💻
PowerShell
Advanced
🛠️
Third-Party Tools
Deep Clean
ℹ️
Compatibility Note All five methods work on both Windows 10 and Windows 11. The interface looks slightly different between versions, but the steps are nearly identical — any differences are noted within each section.

How to Uninstall Programs via the Settings App in Windows 10 & 11

The Settings app is the modern, go-to method for uninstalling both traditional desktop programs and Microsoft Store apps. It's clean, fast, and works on both Windows 10 and Windows 11.

Steps for Windows 11

  1. Press Win + I to open Settings.
  2. Click Apps in the left sidebar, then select Installed apps.
  3. Use the search bar at the top to find the program you want to remove.
  4. Click the three-dot menu (⋯) next to the app name, then click Uninstall.
  5. Confirm the dialog. The uninstaller will run and remove the application.

Steps for Windows 10

  1. Press Win + I to open Settings.
  2. Navigate to AppsApps & features.
  3. Scroll through the list or use the search field to locate the program.
  4. Click on the app to expand it, then press Uninstall.
  5. Follow the on-screen prompts to complete the removal.
💡
Pro Tip Sort the installed apps list by Size to instantly identify the largest programs using up your disk space — a great way to reclaim storage quickly.

✓ Advantages

  • Works for both Store apps and desktop software
  • No technical knowledge required
  • Searchable and sortable app list
  • Shows app size to help prioritise removal

✗ Limitations

  • Does not remove leftover registry entries
  • Some stubborn apps may not appear in the list
  • Cannot batch-uninstall multiple apps at once

How to Uninstall Programs Using Control Panel in Windows 10 & 11

Control Panel is the legacy Windows tool for managing installed software. It's especially reliable for older desktop applications that may not appear correctly in the modern Settings app.

Step-by-Step Instructions

  1. Press Win + R to open the Run dialog. Type appwiz.cpl and press Enter.
  2. The Programs and Features window opens, listing all installed desktop software.
  3. Click the program you want to remove to select it.
  4. Click Uninstall (or Uninstall/Change) in the toolbar at the top of the list.
  5. Follow the program's own uninstall wizard to complete the process.
Fastest Shortcut Search for "Add or remove programs" directly in the Windows taskbar search bar — this takes you straight to the correct panel without opening Control Panel manually.
⚠️
Important Control Panel does not support uninstalling Microsoft Store (UWP) apps. For those, use the Settings app or PowerShell instead.

How to Uninstall Programs Directly from the Windows 10 & 11 Start Menu

The Start Menu method is the fastest way to remove a single application — no settings panels required. It's especially useful for Microsoft Store apps pinned to your Start screen.

Step-by-Step Instructions

  1. Click the Start button or press Win to open the Start Menu.
  2. Locate the app in the pinned tiles or scroll through the full app list.
  3. Right-click the app icon to open the context menu.
  4. Select Uninstall from the menu.
  5. Confirm the removal in the dialog that appears.
⚠️
Note For complex desktop software, right-clicking in the Start Menu typically redirects you to the Settings or Control Panel uninstaller. This method is most effective with Store apps and simple utilities.

How to Uninstall Programs Using PowerShell in Windows 10 & 11

PowerShell is the most powerful built-in tool for removing software — especially Microsoft Store apps, pre-installed bloatware, or programs that refuse to uninstall through the normal interface.

Uninstall a Microsoft Store App via PowerShell

  1. Right-click the Start button and choose Windows PowerShell (Admin) — or Terminal (Admin) in Windows 11.
  2. List all installed Store apps to identify the exact package name:
PowerShell — List all installed Store appsGet-AppxPackage | Select Name, PackageFullName
  1. Remove the app using a wildcard match (example: uninstalling the Xbox app):
PowerShell — Remove a specific Store appGet-AppxPackage *xbox* | Remove-AppxPackage

Uninstall a Classic Desktop Program via PowerShell

PowerShell — Uninstall a Win32 program (example: VLC)$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like "*VLC*" }
$app.Uninstall()

Remove a Store App for All User Accounts

PowerShell — Remove app for all usersGet-AppxPackage -AllUsers *appname* | Remove-AppxPackage
🚨
Caution Always verify the exact package name before running Remove-AppxPackage. Removing core system components can break Windows features or prevent the OS from functioning correctly. When in doubt, test with a non-essential app first.

Best Third-Party Uninstallers for Windows 10 & 11 in 2026

Built-in Windows uninstallers often leave behind registry entries, residual folders, and temp files. Third-party tools scan for and remove these automatically — giving you a truly clean system.

Top Recommended Uninstaller Tools

  1. Revo Uninstaller — Runs a post-uninstall scan for leftover registry keys and files. One of the most widely trusted tools available. Free version is available at revouninstaller.com.
  2. IObit Uninstaller — Supports batch uninstalling, browser plugin removal, and includes a junk file cleaner. Ideal for managing a large number of programs at once.
  3. Bulk Crap Uninstaller (BCU) — Free and open-source. Handles Steam games, portable apps, and Windows Store apps with ease. Available at bcuninstaller.com.
  4. GeekUninstaller — Lightweight and fully portable — no installation required. Perfect for a quick, deep uninstall on any Windows PC.
When to Use a Third-Party Tool Reach for a third-party uninstaller when a program refuses to uninstall normally, when you want to eliminate bloatware completely, when an app keeps reinstalling itself, or when you need to batch-remove many programs at once.
⚠️
Safety Reminder Always download these tools directly from the official developer website. Third-party mirror download sites may bundle adware or malware alongside the installer.

How to Remove Leftover Files and Registry Entries After Uninstalling a Program in Windows

A standard Windows uninstall often leaves traces behind. Follow these steps to clean them up manually and achieve a completely fresh result.

Step 1 — Delete Leftover Program Folders

Open File Explorer and check these locations for any folders belonging to the removed application:

Common leftover file locationsC:\Program Files\
C:\Program Files (x86)\
C:\Users\YourName\AppData\Local\
C:\Users\YourName\AppData\Roaming\
C:\ProgramData\
👁️
Showing Hidden Folders The AppData and ProgramData folders are hidden by default. In File Explorer, go to View → Show → Hidden items (Windows 11), or tick the Hidden items checkbox under the View tab (Windows 10).

Step 2 — Clean Registry Entries (Advanced)

Press Win + R, type regedit, and press Enter. Use Ctrl + F to search for the application name and delete any keys that belong to the removed software:

Registry paths to inspectHKEY_LOCAL_MACHINE\SOFTWARE\
HKEY_CURRENT_USER\SOFTWARE\
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\
🚨
Always Back Up First Incorrect registry edits can cause system instability or prevent Windows from starting. Before deleting any key, export a backup via File → Export in the Registry Editor.

Step 3 — Run Disk Cleanup

After removing programs and leftover files, run the built-in Disk Cleanup utility to clear temporary files and reclaim additional storage space:

Run Dialog — Win + Rcleanmgr

Comparison Table: Best Way to Uninstall Programs in Windows 10 & 11

Use the table below to choose the right uninstall method for your situation at a glance.

Method Win 10 Win 11 Store Apps Deep Clean Batch Remove Difficulty
Settings App Easy
Control Panel Easy
Start Menu Very Easy
PowerShell Advanced
Third-Party Tools Easy–Medium

Frequently Asked Questions: Removing Programs in Windows 10 & Windows 11

Q Why can't I uninstall a program in Windows 10 or Windows 11?
The most common cause is a background process that is still running. Open Task Manager with Ctrl + Shift + Esc, find any process related to the app, end it, then retry. If the program still won't uninstall, a third-party tool like Revo Uninstaller can force-remove it even when Windows cannot.
Q Does uninstalling a program delete all its files from my PC?
Not always. Standard Windows uninstallers remove the core application files, but user data, configuration files, and registry entries often remain. For complete removal, follow the cleanup steps in the Leftover Files section above, or use a third-party tool with a post-uninstall scan feature.
Q How do I uninstall built-in Windows apps and bloatware?
Most pre-installed Microsoft apps — such as Xbox, Solitaire, or Cortana — can be removed via Settings → Apps → Installed apps, or via PowerShell using Get-AppxPackage *appname* | Remove-AppxPackage. Some core system components cannot be removed without specialised tools and may affect system stability if deleted.
Q Is it safe to use third-party uninstallers on Windows?
Yes — provided you download from the official developer websites. Tools like Revo Uninstaller, IObit Uninstaller, and BCU are trusted by millions of users worldwide. Never download from third-party mirror sites, as these sometimes bundle adware or malware alongside the installer.
Q How do I uninstall a Windows Update in Windows 10 or Windows 11?
Go to Settings → Windows Update → Update History → Uninstall Updates. A list of recent updates will appear. Select the one causing problems and click Uninstall. This is useful when a recent update triggers crashes or compatibility issues.
Q What if a program doesn't appear in Apps & Features?
Some programs — particularly portable apps or partially installed software — do not register in the Windows app list. In that case, locate and run the uninstall.exe file inside the program's installation folder (usually under C:\Program Files\). Alternatively, use Revo Uninstaller or Bulk Crap Uninstaller, which can detect and remove unregistered software.

Final Thoughts

Windows 10 and Windows 11 give you everything you need to remove unwanted software — from the simple Settings app for everyday use, to PowerShell commands for removing Store apps and bloatware with precision. When a standard uninstall leaves behind traces, third-party tools like Revo Uninstaller or BCU complete the job thoroughly.

Make it a habit to periodically audit your installed applications, remove what you no longer need, and run a leftover-file cleanup afterward. Your system will run faster, stay more secure, and feel noticeably cleaner.