Skip to content

Instantly share code, notes, and snippets.

View Mageas's full-sized avatar
🏠
Learning new languages

Arnaud Gaydamour Mageas

🏠
Learning new languages
View GitHub Profile
@Mageas
Mageas / removeWin10Apps.ps1
Created July 18, 2020 11:33 — forked from Eonasdan/removeWin10Apps.ps1
Remove annoying windows 10 store apps you can't uninstall. this is a powershell script to for uninstall win 10 built in apps that run for no reason. It also appears that MS will force some/all of them back after a windows update. From http://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/
# Uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
# Uninstall Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
# Uninstall Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
# Uninstall Calendar and Mail: