Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I have uninstalled Bing Maps, Travel and a few other Win8 apps from my computer. However, C:\Program Files\WindowsApps still lists them, happily taking up 1.5 GB of space.

Is there a better way to fully uninstall every trace of these apps than to simply delete the files by hand?

share|improve this question
Perhaps this will help you get rid of those last few pesky apps. :) – Karan Jan 14 at 0:35
@Karan Unfortunately it didn't; all the code there uses the same calls and has the same problem with those last few pesky ones... – romkyns Jan 14 at 13:56

1 Answer

Built-in apps are called provisioned apps. They are scheduled to be installed for each new user that registers on a Windows 8 PC, so you can't uninstall them completely from the Start screen. To do so, you've to use Windows PowerShell command remove-AppxProvisionedPackage, like so:

remove-AppxProvisionedPackage -package Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe -online

That would uninstall the Travel app. To remove Bing Map app, the command would be:

remove-AppxProvisionedPackage -package Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe -online

Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe is the app package name, which basically is the folder that you find in C:\Program Files\WindowsApps.

To uninstall apps installed from the Windows Store, the command is Remove-AppxPackage. It's syntax is as below:

Remove-AppxPackage PackageFullName

Note: Do not add -online parameter at the end of this command. [source]

share|improve this answer
Nice! This worked for 25% of the directories in there, but for 75% of them it says "The system cannot find the file specified". Any ideas about these? – romkyns Jan 12 at 21:09
I've updated my answer. See if the second command works. – Leo Jan 13 at 7:02
Alright, Remove-AppxPackage has removed two thirds of the remaining apps; for the rest it fails with "Windows cannot remove <app> because the current user does not have that package installed". Is there absolutely no way to remove them? One of these is Bing Travel, and this is a clean install with just a single user. – romkyns Jan 13 at 12:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.