-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall-apps.ps1
137 lines (130 loc) · 3.94 KB
/
uninstall-apps.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#
# Uninstall Apps Script
#
#Requires -RunAsAdministrator
@"
Uninstalling Unwanted Apps
----------------------------------------
"@
# Remove Any 3rd Party Junk Apps
# These shouldn't be installed on a clean install, but
# some of them could come pre-loaded with OEM installs.
Write-Output "Uninstalling 3rd Party Junk Apps..."
$junkapps = @(
"22364Disney.ESPN*"
"22364Disney.ESPNBetaPWA"
"2414FC7A.Viber"
"2FE3CB00.PicsArt-PhotoStudio"
"41038Axilesoft.ACGMediaPlayer"
"46928bounde.EclipseManager"
"4DF9E0F8.Netflix"
"5319275A.WhatsAppDesktop"
"613EBCEA.PolarrPhotoEditorAcademicEdition"
"64885BlueEdge.OneCalendar"
"6Wunderkinder.Wunderlist"
"7EE7776C.LinkedInforWindows"
"828B5831.HiddenCityMysteryofShadows"
"89006A2E.AutodeskSketchBook"
"9E2F88E3.Twitter"
"A278AB0D.DisneyMagicKingdoms"
"A278AB0D.DragonManiaLegends"
"A278AB0D.MarchofEmpires"
"ActiproSoftwareLLC.562882FEEB491"
"AdobeSystemsIncorporated.AdobePhotoshopExpress"
"AmazonVideo.PrimeVideo"
"BytedancePte.Ltd.TikTok"
"CAF9E577.Plex"
"ClearChannelRadioDigital.iHeartRadio"
"D52A8D61.FarmVille2CountryEscape"
"D5EA27B7.Duolingo-LearnLanguagesforFree"
"DB6EA5DB.CyberLinkMediaSuiteEssentials"
"Disney.37853FC22B2CE"
"DolbyLaboratories.DolbyAccess"
"Drawboard.DrawboardPDF"
"FACEBOOK.317180B0BB486"
"Facebook.Facebook"
"Facebook.InstagramBeta"
"Fitbit.FitbitCoach"
"flaregamesGmbH.RoyalRevolt2"
"Flipboard.Flipboard"
"GAMELOFTSA.Asphalt8Airborne"
"KeeperSecurityInc.Keeper"
"king.com.*"
"king.com.BubbleWitch3Saga"
"king.com.CandyCrushSaga"
"king.com.CandyCrushSodaSaga"
"NORDCURRENT.COOKINGFEVER"
"PandoraMediaInc.29680B314EFC2"
"Playtika.CaesarsSlotsFreeCasino"
"ShazamEntertainmentLtd.Shazam"
"SlingTVLLC.SlingTV"
"SpotifyAB.SpotifyMusic"
"ThumbmunkeysLtd.PhototasticCollage"
"TuneIn.TuneInRadio"
"WinZipComputing.WinZipUniversal"
"XINGAG.XING"
)
foreach ($junkapp in $junkapps) {
Get-AppxPackage -allusers $junkapp | Remove-AppxPackage
}
# Remove Extra Microsoft Apps
Write-Output "Uninstalling Microsoft Apps..."
$msapps = @(
"*WebExperience*"
"Clipchamp.Clipchamp"
"Microsoft.BingFinance"
"Microsoft.BingNews"
"Microsoft.BingSports"
"Microsoft.BingWeather"
"Microsoft.GetHelp"
"Microsoft.Getstarted"
"Microsoft.Microsoft3DViewer"
"Microsoft.MicrosoftOfficeHub"
"Microsoft.MicrosoftPowerBIForWindows"
"Microsoft.MicrosoftSolitaireCollection"
"Microsoft.MicrosoftStickyNotes"
"Microsoft.MinecraftEducationEdition"
"Microsoft.MixedReality.Portal"
"Microsoft.MSPaint"
"Microsoft.Office.OneNote"
"Microsoft.OneConnect"
"Microsoft.People"
"Microsoft.PowerAutomateDesktop"
"Microsoft.SkypeApp"
"Microsoft.Todos"
"Microsoft.Wallet"
"Microsoft.Whiteboard"
"microsoft.windowscommunicationsapps"
"Microsoft.WindowsFeedbackHub"
"Microsoft.WindowsMaps"
"Microsoft.YourPhone"
"Microsoft.ZuneMusic"
"Microsoft.ZuneVideo"
"MicrosoftCorporationII.MicrosoftFamily"
"MicrosoftCorporationII.QuickAssist"
"MicrosoftTeams"
)
foreach ($msapp in $msapps) {
Get-AppxPackage -allusers $msapp | Remove-AppxPackage
}
# If you want to remove the various XBOX apps,
# uncomment this section.
# NOTE: If you have the AMD Ryzen 7950X3D CPU,
# you will need to keep the XBOX game bar app
# in order for the core parking to work correctly.
# https://www.youtube.com/watch?v=9gCzXdLmjPY
# Write-Output "Uninstalling XBOX Apps..."
# $xboxapps = @(
# "Microsoft.GamingApp"
# "Microsoft.GamingServices"
# "Microsoft.Xbox.TCUI"
# "Microsoft.XboxApp"
# "Microsoft.XboxDevices"
# "Microsoft.XboxGameOverlay"
# "Microsoft.XboxGamingOverlay"
# "Microsoft.XboxIdentityProvider"
# "Microsoft.XboxSpeechToTextOverlay"
# )
# foreach ($xboxapp in $xboxapps) {
# Get-AppxPackage -allusers $xboxapp | Remove-AppxPackage
# }