
How To Uninstall All Windows 10 Apps Using PowerShell
You have noticed that Windows 10 came with all sorts of Apps and you want a simple way to Uninstall all these Apps, well using PowerShell will be the quickest method.
Step 1: Open PowerShell with admin rights. Locate the search box in the taskbar and type Windows PowerShell in the search box to see PowerShell in results, right-click on PowerShell, and then click Run as administrator option.
Step 2: In the PowerShell prompt, type the following command and press Enter key.
Get-AppxPackage
This command will display all the installed apps with all their specific details and their full names which we require to uninstall them.
Step 3: To remove all inbuilt / default app from all user accounts in win 10
Get-AppxPackage -AllUsers | Remove-AppxPackage
After you run the command you will see a few errors which you can ignore, once the removal of apps is complete go ahead and check your start menu.
Side Note: To remove all modern apps from system account.
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online
Use the these commands to remove individual apps:
Uninstall Skype app
get-appxpackage *messaging* | remove-appxpackage
Uninstall Sway
get-appxpackage *sway* | remove-appxpackage
Uninstall Phone:
get-appxpackage *commsphone* | remove-appxpackage
Uninstall Phone Companion:
get-appxpackage *windowsphone* | remove-appxpackage
Uninstall Phone and Phone Companion apps together:
get-appxpackage *phone* | remove-appxpackage
Uninstall Calendar and Mail apps together:
get-appxpackage *communicationsapps* | remove-appxpackage
Uninstall People:
get-appxpackage *people* | remove-appxpackage
Uninstall Groove Music:
get-appxpackage *zunemusic* | remove-appxpackage
Uninstall Movies & TV:
get-appxpackage *zunevideo* | remove-appxpackage
Uninstall Groove Music and Movies & TV apps together:
get-appxpackage *zune* | remove-appxpackage
Uninstall Money:
get-appxpackage *bingfinance* | remove-appxpackage
Uninstall News:
get-appxpackage *bingnews* | remove-appxpackage
Uninstall Sports:
get-appxpackage *bingsports* | remove-appxpackage
Uninstall Weather:
get-appxpackage *bingweather* | remove-appxpackage
Uninstall Money, News, Sports and Weather apps together:
get-appxpackage *bing* | remove-appxpackage
Uninstall OneNote:
get-appxpackage *onenote* | remove-appxpackage
Uninstall Alarms & Clock:
get-appxpackage *alarms* | remove-appxpackage
Uninstall Calculator:
get-appxpackage *calculator* | remove-appxpackage
Uninstall Camera:
get-appxpackage *camera* | remove-appxpackage
Uninstall Photos:
get-appxpackage *photos* | remove-appxpackage
Uninstall Maps:
get-appxpackage *maps* | remove-appxpackage
Uninstall Voice Recorder:
get-appxpackage *soundrecorder* | remove-appxpackage
Uninstall Xbox:
get-appxpackage *xbox* | remove-appxpackage
Uninstall Microsoft Solitaire Collection:
get-appxpackage *solitaire* | remove-appxpackage
Uninstall Get Office:
get-appxpackage *officehub* | remove-appxpackage
Uninstall Get Skype:
get-appxpackage *skypeapp* | remove-appxpackage
Uninstall Get Started:
get-appxpackage *getstarted* | remove-appxpackage
Uninstall 3D Builder:
get-appxpackage *3dbuilder* | remove-appxpackage
Uninstall Microsoft Store (Windows apps store):
get-appxpackage *windowsstore* | remove-appxpackage
Disable Microsoft Windows Defender
Set-MpPreference -DisableRealtimeMonitoring $true
Enable Microsoft Windows Defender
Set-MpPreference -DisableRealtimeMonitoring $false
Uninstalling these applications will help you resolve problems with your apps or if you need to lock down the system for users and to reduce the number of apps from your start menu. If you need help to Reinstall Apps Click Here
I hope this article was helpful, if you have any questions, please feel free to contact me. If you would like to be notified of when I create a new post, you can subscribe to my blog alert.
- How To Get Started With SharePoint: A Beginners Guide
- PCI Compliance for Small Business Owners: Ensuring Security and Trust
- How To Delete Version History in SharePoint Online using PnP PowerShell
- HIPAA Compliance and Video Security – What You Need to Know
- Open-AudIT: Revolutionizing Network Discovery and Inventory Management