#131

terminal as admin



Uninstall Pre-Installed Apps Using PowerShell



Overview


This method allows you to remove all pre-installed apps in Windows 10 using PowerShell with administrative privileges.

Steps


1. Open PowerShell as administrator.
2. Paste the following command and press Enter:
`powershell
Get-AppxPackage -AllUsers | Remove-AppxPackage
`

Notes


- The PowerShell window may display errors in bright red text. These errors are related to apps that cannot be uninstalled.
- Do not panic if you see errors; they are expected and do not indicate a failure of the command.
Log in or register to reply.