PART 1: Remove a Specific Built-in App in Windows 10

PART 1: Remove a Specific Built-in App in Windows 10

You can take help of Get-AppxPackage and Remove-AppxPackage commands to uninstall/remove built-in apps in Windows 10.

Get-AppxPackage command can be used to get a list of all installed modern apps in your computer. Remove-AppxPackage command is used to remove an app from Windows 10 computer.

If you want to remove an app, these commands will require an essential information about that app i.e. PackageFullName (the full package name of the modern app).

So first we’ll need to get the PackageFullName of our desired modern app which we want to remove from our computer.

1. Just run following command in PowerShell to get a list of all installed apps:

Get-AppxPackage

This command will output a long list of all installed apps containing lots of information about each app. But we only need the PackageFullName information of our desired app, so run following filtered command:

Get-AppxPackage | Select Name, PackageFullName

This command will show only the name of the app and its PackageFullName information. Now the output will be easy to read and understand.

2. Now select the PackageFullName information of your desired app and press Enter key to copy it to clipboard.

3. Now to remove the app from your computer, you’ll need to run following command:

Get-AppxPackage PackageFullName | Remove-AppxPackage

In above mentioned command, replace PackageFullName with the copied information from step 2. You can also take help of wildcards (such as *) to make the PackageFullName parameter easy to type.

For example, if you want to remove 3DBuilder app, the command to remove it will be as following:

Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Remove All Built-in Apps in Windows 10

PART 2: Remove All Built-in Apps in Windows 10

If you want, you can uninstall all built-in modern apps in a single step using following command:

Get-AppxPackage | Remove-AppxPackage

The above mentioned command will uninstall the apps from your current user account only.

Command to uninstall all built-in apps for all user accounts:

Get-AppxPackage -allusers | Remove-AppxPackage

Command to uninstall all built-in apps for a particular user account:

Get-AppxPackage -user username | Remove-AppxPackage

NOTE: We’ll not advise you to uninstall all built-in apps using these commands as it may break some functionality of Windows 10 OS. Also you may not be able to restore all modern apps in future.

Windows 10: Удаление / Uninstall OneDrive

Только версии с декабрьскими обновлениями

Uninstall OneDrive on Windows 10

I don’t know for how long the option to uninstall OneDrive using the Settings application been there, but it is available now. I checked both the latest Windows 10 Insider Preview version and the most recent Windows 10 Anniversary Update version, and both displayed a working “uninstall” button in the settings application when you clicked on OneDrive there.

Use Windows-I to open the Settings application on the Windows 10 device.
Navigate to System > Apps & Features.
Type One in the search field at the top, or browse the alphabetically sorted list manually instead to find the OneDrive listing on the page.
Click on the OneDrive entry. The uninstall button should be active (instead of grayed out).
Click on uninstall, and then again on uninstall when the “this app and its related info will be uninstalled” prompt.

This removes the OneDrive application from the Windows 10 device. Please note that it won’t remove a synced OneDrive folder on the device. You can delete the data manually if you don’t require it, or keep it there.

Scroll to top