Check This Out Remove windows built in apps

motive

EGO Addict
=(eG)=
Joined
Feb 13, 2010
Messages
1,178
You could have just googled this, but I didn't think about it until I ran across it. I was like, "hey I don't like those"

OQr0pBQ.png


Windows 10 includes a variety of universal apps, and there?s no easy way to hide them from the ?All Apps? view in the new Start menu. You can uninstall them, but Microsoft doesn?t allow you to easily uninstall them in the usual way.
You probably don?t want to do this. These apps take up very little space on your device so it?s best to just ignore them if you don?t want to use them. But, if you really want to uninstall them, you can. If you?ve already uninstalled included apps, you can get them all back with a single command.




Use PowerShell to Uninstall Built-in Apps

You can uninstall most of the built-in apps ? even ones that don?t normally offer an ?Uninstall? option ? with a PowerShell cmdlet. This trick won?t allow you to remove a few of the most important built-in apps, including Cortana and Microsoft Edge. If you try, you?ll see an error message saying they can?t be removed.

First, open PowerShell as administrator. Open the Start menu, search for ?PowerShell,? right-click the PowerShell shortcut, and select ?Run as administrator.? Agree to the UAC prompt.

ztieSmH.png

Uninstall 3D Builder:

Code:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Uninstall Alarms and Clock:

Code:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Uninstall Calculator:

Code:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage

Uninstall Calendar and Mail:

Code:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

Uninstall Camera:

Code:
Get-AppxPackage *windowscamera* | Remove-AppxPackage

Uninstall Contact Support:

Code:
This app can?t be removed.

Uninstall Cortana:

Code:
This app can?t be removed.

Uninstall Get Office:

Code:
Get-AppxPackage *officehub* | Remove-AppxPackage

Uninstall Get Skype:

Code:
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Uninstall Get Started:

Code:
Get-AppxPackage *getstarted* | Remove-AppxPackage

Uninstall Groove Music:

Code:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Uninstall Maps:

Code:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall Microsoft Edge:

Code:
This app can?t be removed.

Uninstall Microsoft Solitaire Collection:

Code:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage

Uninstall Money:

Code:
Get-AppxPackage *bingfinance* | Remove-AppxPackage

Uninstall Movies & TV:

Code:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Uninstall News:

Code:
Get-AppxPackage *bingnews* | Remove-AppxPackage

Uninstall OneNote:

Code:
Get-AppxPackage *onenote* | Remove-AppxPackage

Uninstall People:

Code:
Get-AppxPackage *people* | Remove-AppxPackage

Uninstall Phone Companion:

Code:
Get-AppxPackage *windowsphone* | Remove-AppxPackage

Uninstall Photos:

Code:
Get-AppxPackage *photos* | Remove-AppxPackage

Uninstall Store:

Code:
Get-AppxPackage *windowsstore* | Remove-AppxPackage

Uninstall Sports:

Code:
Get-AppxPackage *bingsports* | Remove-AppxPackage

Uninstall Voice Recorder:

Code:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Uninstall Weather:

Code:
Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Windows Feedback:

Code:
This app can?t be removed.

Uninstall Xbox:

Code:
Get-AppxPackage *xboxapp* | Remove-AppxPackage

Don't forget to press enter ^_^ I did that and I was waiting like 20 minutes.
 
Last edited:

Latest posts

Back
Top