Remove Default Windows 10 Apps (1809)

A super simple script to remove the default apps from Windows 10 1809 x64, though should work on other versions and architectures.


## AUTHOR: AntB 2019
## PURPOSE: Remove Default-Apps from Windows 10 1809 x64, intended for SCCM use.

$Apps = "*BingWeather*", "*windowsalarms*", "*zunevideo*", "*zunemusic*", "Microsoft.XBoxApp", "Microsoft.XboxGameOverlay", "Microsoft.XboxGamingOverlay", "Microsoft.MicrosoftStickyNotes", "Microsoft.Microsoft3DViewer", "Microsoft.Getstarted", "Microsoft.GetHelp", "Microsoft.Messaging", "Microsoft.WindowsFeedbackHub", "Microsoft.MicrosoftSolitaireCollection", "Microsoft.MixedReality.Portal", "Microsoft.WindowsMaps", "Microsoft.MicrosoftOfficeHub", "Microsoft.Office.OneNote", "Microsoft.OneConnect", "Microsoft.YourPhone", "Microsoft.People", "Microsoft.WindowsStore", "Microsoft.SkypeApp", "Microsoft.MSPaint", "Microsoft.Windows.Photos", "Microsoft.WindowsSoundRecorder", "microsoft.windowscommunicationsapps"

## Loop through the list above, remove the app for all users
foreach ($app in $apps)
{
Get-AppxPackage $app | Remove-AppxPackage -AllUsers
}


 

Leave a comment

Create a free website or blog at WordPress.com.

Up ↑