Removing Built-In Apps on Windows 10: A Simple Guide

Removing Built-In Apps on Windows 10: A Simple Guide

Remove Built-In Apps in Windows 10
To remove built-in apps in Windows 10, you can use the "PowerShell" command-line tool. Here's how to do it:

Open the "Start" menu and search for "PowerShell".

Right-click on the "Windows PowerShell" app and select "Run as administrator".

In the PowerShell window, type the following command to see a list of all the built-in apps that are installed on your system:

Copy code
Get-AppxPackage | Select Name, PackageFullName
To remove a built-in app, you will need to know its package name. You can find the package name of the app that you want to remove in the list of installed apps that was displayed by the previous command.

Once you have the package name of the app that you want to remove, use the following command to remove it:

Copy code
Remove-AppxPackage <PackageName>
Replace <PackageName> with the actual package name of the app that you want to remove. For example, if you want to remove the "Calculator" app, you would use the following command:
Copy code
Remove-AppxPackage Microsoft.WindowsCalculator
Repeat this process for any other built-in apps that you want to remove.
Keep in mind that some built-in apps, such as the "Windows Store" app, are necessary for the proper functioning of Windows 10 and should not be removed. Removing these apps can cause problems with your system. It is recommended to only remove built-in apps that you are sure you don't need.




And if this article about Remove Built-In Apps in Windows 10 hasn't satisfied you yet, you can watch the video below.

That's all from SmashinGeeks, see you in another article. ^^

Previous Post Next Post