Usually that means they weren't "installed" but just copied to a directory. Usually deleting the directory is correct. Answer from Katur on reddit.com
🌐
Microsoft Support
support.microsoft.com › en-us › windows › uninstall-or-remove-apps-and-programs-in-windows-4b55f974-2cc6-2d2b-d092-5905080eaf98
Uninstall or remove apps and programs in Windows - Microsoft Support
Your PC will still work, but we recommend moving to Windows 11.​​​​​​​​​​​​​​​​​​​​​ ... Select Start and look for the app or program in the list shown. Press and hold (or right-click) on the app, then select Uninstall.
🌐
Reddit
reddit.com › r/windows10 › how to uninstall apps that don't show up in programs and features?
r/Windows10 on Reddit: How to uninstall apps that don't show up in Programs and Features?
October 31, 2024 -

I've installed some old games recently on a Win 10 PC and now want to uninstall them. The problem is they are not listed under programs and features in the control panel, nor do they show up in Revo Unistaller. There is also no uninstall.exe in the directory. How can I uninstall them? Should I just delete the directory?

Discussions

How do I uninstall a program?
There is an app I installed from ... shortcut app I think), but I didn't get to use it, and now I need to uninstall it. Can someone help me? Windows for home | Windows 10 | Install and upgrade · Windows for home | Windows 10 | Install and upgrade ... Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's ... More on learn.microsoft.com
🌐 learn.microsoft.com
1
34
How to uninstall and reinstall Windows 10 built-in apps | Tom's Hardware Forum
The best Amazon Big Spring Sale ... prices on the latest gaming PCs, GPUs, laptops, monitors, peripherals, and more! ... You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser. ... The apps built into Windows 10 are pretty good but there are hundreds of alternatives out there to try. If you’re anything like me you will have spent many an hour uninstalling the default ... More on forums.tomshardware.com
🌐 forums.tomshardware.com
June 16, 2016
What do you guys use to uninstall programs that bury themselves and leave traces
revo is probably the best uninstaller out there. IObit is also good More on reddit.com
🌐 r/computers
38
26
March 31, 2023
How do I uninstall apps on Windows 10?
I’m not sure how to remove programs from my Windows 10 computer. I’ve tried looking in the Control Panel and the Microsoft Store but I’m still unclear on the steps. Can someone guide me? More on forum.network-inventory-advisor.com
🌐 forum.network-inventory-advisor.com
0
0
February 22, 2025
🌐
Dell
dell.com › home › support home › knowledge base article
How To Remove Applications, Programs, and Updates in Windows 11, and Windows 10 | Dell US
September 8, 2025 - This can commonly be found by going to the start menu and scrolling down the all programs list until you find the appropriate program or app. Open the folder, and the uninstaller is listed there. Double-click the uninstaller and follow the on-screen instructions.
🌐
Windows 10 Forums
tenforums.com › tutorials › 4689-uninstall-apps-windows-10-a.html
Uninstall Apps in Windows 10 - Windows 10 Help Forums
March 17, 2015 - A) On the left side of the Start menu in the list of installed apps, right click or press and hold on the desktop app or Windows app (ex: Facebook) that you want to uninstall, click/tap on Uninstall, and go to step 4 or step 5 below.
🌐
PCMAG
pcmag.com › home › how-to › windows 11
6 Easy Ways to Uninstall Programs in Windows | PCMag
April 7, 2025 - Right-click an app you want to jettison and click the Uninstall command. ... You can also uninstall apps from Windows settings by going to Settings > Apps > Apps & features (Windows 10) or Settings > Apps > Installed apps (Windows 11).
Find elsewhere
🌐
Revo Uninstaller
revouninstaller.com
Uninstall Software, Remove programs easily - Revo Uninstaller Pro
It is amazing how many more files get left on your machine by program installers. Revo finds them all and removes them totally.” ... “The most reliable and fastest way to remove an app, software or installation. Uninstaller Pro from Revo finds the most well-hidden file and gives the software no chance.
🌐
Tom's Hardware
forums.tomshardware.com › home › software › windows 10
How to uninstall and reinstall Windows 10 built-in apps | Tom's Hardware Forum
June 16, 2016 - Uninstall Windows 10 built-in apps Some Windows default apps will let you uninstall them as you would any other, while others need a little more effort. We will need to use the PowerShell for those. 1. Right click on the app and select Uninstall.
Top answer
1 of 3
24

Microsoft has: Uninstall or remove apps and programs in Windows

It relies on the programmer, who built the app, to do what needs to be done. When the programmer is careless, then things are left behind.

Most of the time this only happens to log files created during installation, or uninstallation.

Some programs have bad un-installers, which do leave changes behind. There is not much you can do about that, besides only installing programs from respected/well known suppliers.

Or, you could use Windows Sandbox to test the program, and test the un-install process before doing that on your production system.

2 of 3
7

On Windows, there’s not much you can do other than rely on the Uninstall or remove apps or programs page in the Windows settings. This is generally dependent on things being handled correctly by the developer though, and you can’t really get around that because of how Windows works.

In general though, most of what gets left behind will be either log files or configuration changes. Log files are harmless other than disk usage (and usually easy enough to find and remove). Configuration changes are trickier to clean up and usually require you to know what changed, though there is software that can help with this if you’re proactive about it (such as regshot).

Outside of config changes and odd files here and there though, it’s unlikely anything not actively malicious will leave behind stuff that will survive a reboot.

You can mitigate all this risk by only installing applications from trusted sources, and to a lesser extent by using a proper package manager (for example, it’s a lot harder for something installed from the Microsoft Store to leave behind anything with a lasting impact on your system than it is some random software you installed off the internet).


On other platforms both of those mitigations (using a real package manager, and only installing from trusted sources) are the norm to the point of people looking at you funny for trying something else. Windows (specifically Windows as used by end-users) is very much the abnormal case here in that the norm is to download software form dozens of different sources and run whatever file you downloaded with minimal verification.

🌐
NIA Forum
forum.network-inventory-advisor.com › software
How do I uninstall apps on Windows 10? - Software - NIA Forum
February 22, 2025 - I’m not sure how to remove programs from my Windows 10 computer. I’ve tried looking in the Control Panel and the Microsoft Store but I’m still unclear on the steps. Can someone guide me?
Top answer
1 of 4
33
  1. elevated Powershell command line

  2. this command to get list of packages:

    Get-AppxPackage | Select Name, PackageFullName

  3. Find package you want to remove

  4. This command to remove package (Copy/Paste package name):

    Remove-AppxPackage Microsoft.XboxApp_7.7.17003.0_x64__8wekyb3d8bbwe

Caveat: During toying around, this does seem to remove the apps for the logged in user. They still existed for another user when I logged in as them. I'll toy around more and see if I can find a way to "ban" an app computer/network wide.

Edit 1: Furthmore, you can remove the ProvisionedPackages so that they don't get installed in the future:

Get-AppxProvisionedPackage -Online | Select DisplayName, PackageName
Remove-AppxProvisionedPackage Microsoft.ZuneMusic_2019.6.11821.0_neutral_~_8wekyb3d8bbwe

Edit 2: Finally, you can do a "Bulk remove" to "scorched earth" Packages and Provisioned.

Just a warning: This will uninstall the Windows Store. That's not an issue for me, but uninstalling everything isn't for the faint of heart.

Get-AppxPackage | Remove-AppxPackage
Get-AppxProvisionedPackage -online | Remove-AppxProvisionedPackage -online

It's probably wise not to completely remove the windows store. I haven't tried this yet, but this (in the comments) looks to be ballpark of what I'd use, to remove everything except Windows Store.

Get-AppxPackage -AllUsers | where-object {$_.name –notlike “*store*”} | Remove-AppxPackage
Get-appxprovisionedpackage –online | where-object {$_.packagename –notlike “*store*”} | Remove-AppxProvisionedPackage -online    

Further resource: Delete Windows 10 Apps and Restore Default Windows 10 Apps

2 of 4
23

If you find same universal or provisioned apps are difficult to remove, try the GRID command in Powershell:

PowerShell Commands to Remove Apps in GridView

Just use Out-Gridview to select which applications you want to remove.

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

This will display a grid of all installed apps. You can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot.

(I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)

🌐
NinjaOne
ninjaone.com › home › blog › it ops › how to uninstall apps in windows 10: win32, uwp, and built-in apps
How to Uninstall Apps in Windows 10 | NinjaOne
November 4, 2025 - The simplest way to delete user-level applications is through Windows Settings or the Start Menu. When removing legacy, enterprise, or Win32 applications, the best way to approach this is through the Control Panel.
🌐
How-To Geek
howtogeek.com › home › windows › how to uninstall windows 10's built-in apps (and how to reinstall them)
How to Uninstall Windows 10's Built-in Apps (and How to Reinstall Them)
November 2, 2023 - You can install some apps in the normal way. Just right-click an app on the Start menu — either in the All Apps list or the app's tilke — and then select the "Uninstall" option.
🌐
Canvas
teamdynamix.umich.edu › TDClient › 99 › Portal › KB › ArticleDet
How to Uninstall a Program on Windows10 and 11
Search for the program that you want to remove and click the 3 vertical dots on the right-hand side. Click Uninstall from the options at the bottom of the context menu that appears.
🌐
Sony
us.vaio.com › blogs › innovation-hub › how-to-uninstall-programs-in-windows-10
How To Uninstall Programs In Windows 10 – Vaio USA
December 5, 2023 - Beyond the basic methods of uninstalling the programs installed in Windows 10, there are advanced options that can be particularly useful for managing more complex applications or troubleshooting problematic software. Some programs come with their own uninstall utility, which is specifically designed to remove all components of the application effectively.
🌐
Spiceworks
community.spiceworks.com › software & applications
"How do I remove Apps from Windows 10 for ALL users- past, present, and future?" - Software & Applications - Spiceworks Community
February 4, 2020 - So, sorry if this is a duplicate topic, but quite frankly I’ve been crawling over numerous posts in this and other technical forums that take a stab at answering this question, but none of them actually have. Or they’ve…
🌐
YouTube
youtube.com › programmingknowledge2
How to Uninstall Programs in Windows 10 | Uninstall Apps on Windows 10 - YouTube
In this video How to uninstall apps in Windows 10 . So let us see How to properly uninstall programs on Windows 10. This instructions in this video tutorial ...
Published   April 1, 2020
Views   2M
🌐
CustomGuide
customguide.com › course › windows-10 › how-to-uninstall-apps-on-windows-10
How to Uninstall Apps on Windows | CustomGuide
Click to expand an app. Click Uninstall. Windows asks you if you're sure you want to remove the app.