-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremove-built-in-windows10-apps.ps1
114 lines (67 loc) · 2.17 KB
/
remove-built-in-windows10-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
<#
Scripts to remove built-in unwanted Windows 10 Apps
Syntax:
Get-AppxPackage -Name *Partialname* | RemoveAppxPackage
Optional Switch -AllUsers
#>
#Removes get office app
Get-AppxPackage *officehub* | Remove-AppxPackage
#Removes Skype App
Get-AppxPackage *skypeapp* | Remove-AppxPackage
#Removes Maps
Get-AppxPackage *maps* | Remove-AppxPackage
#Removes Solitaire Collection
get-appxpackage *solitaire* | remove-appxpackage
#Removes Microsoft Wallet
get-appxpackage *wallet* | remove-appxpackage
#Removes Microsoft WIFI (Paid WIFI)
get-appxpackage *connectivitystore* | remove-appxpackage
#Removes Money, Sports, News, and Weather
get-appxpackage *bing* | remove-appxpackage
#Removes Onenote app
get-appxpackage *onenote* | remove-appxpackage
#Removes Paid WIFI and Cellular
get-appxpackage *oneconnect* | remove-appxpackage
#Removes Windows Sway
get-appxpackage *sway* | remove-appxpackage
#Removes Candy Crush
Get-AppxPackage *king.com.CandyCrushSaga* | Remove-AppxPackage
#Remove XBOX
#get-appxpackage *xbox* | remove-appxpackage
#Remove Twitter
Get-AppxPackage *twitter* | Remove-AppxPackage
#Remove Ebay
Get-AppxPackage *ebay* | Remove-AppxPackage
#Remove Amazon
Get-AppxPackage *amazon* | Remove-AppxPackage
Get-AppxPackage *help*
Get-AppxPackage *feedback*
Get-AppxPackage *zune*
Get-AppxPackage *messaging*
Get-AppxPackage *3d*
Get-AppxPackage *notes*
Get-AppxPackage *recorder*
Get-AppxPackage *tips*
Get-AppxPackage *paint*
Get-AppxPackage
Write-Host {Removal of apps complete}
#Enterprise Removal options:
<#
Remove 3D Builder
get-appxpackage *3dbuilder* | remove-appxpackage
Remove Mail and Calender
get-appxpackage *communicationsapps* | remove-appxpackage
Remove Feedback Hub
get-appxpackage *feedback* | remove-appxpackage
Remove Camera
get-appxpackage *camera* | remove-appxpackage
Remove Phone
get-appxpackage *commsphone* | remove-appxpackage
Remove Phone Companion
get-appxpackage *windowsphone* | remove-appxpackage
Remove XBOX
get-appxpackage *xbox* | remove-appxpackage
Remove Twitter
Get-AppxPackage *twitter* | Remove-AppxPackage
#>