This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
forked from Digressive/Remove-MS-Store-Apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove-MS-Store-Apps.ps1
375 lines (304 loc) · 11.3 KB
/
Remove-MS-Store-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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<#PSScriptInfo
.VERSION 23.04.28
.GUID 888f5987-8b64-4a4a-ab8e-00a1bc99ff54
.AUTHOR Mike Galvin Contact: [email protected]
.COMPANYNAME Mike Galvin
.COPYRIGHT (C) Mike Galvin. All rights reserved.
.TAGS Remove Clean up Microsoft Store Windows UWP in-box built-in included app Windows 11 10 Customisable removal utility
.LICENSEURI
.PROJECTURI https://gal.vin/utils/remove-ms-store-apps-utility/
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
#>
<#
.SYNOPSIS
Remove MS Store Apps - Customisable Windows 11/10 Microsoft Store app removal utility
.DESCRIPTION
Removes apps included in Windows 11/10.
Run with -help or no arguments for usage.
#>
## Set up command line switches.
[CmdletBinding()]
Param(
[alias("List")]
$AppListFile,
[alias("Wim")]
$WimFile,
[alias("WimIndex")]
$WIndex,
[alias("WimMountPath")]
$WimMntPath,
[alias("L")]
$LogPathUsr,
[alias("LogRotate")]
$LogHistory,
[switch]$PCApps,
[switch]$UserApps,
[switch]$Help,
[switch]$NoBanner)
If ($NoBanner -eq $False)
{
Write-Host -ForegroundColor Yellow -BackgroundColor Black -Object "
_____ __ __ _____ _____ _
| __ \ | \/ |/ ____| / ____| |
| |__) |___ _ __ ___ _____ _____ | \ / | (___ | (___ | |_ ___ _ __ ___
| _ // _ \ '_ ' _ \ / _ \ \ / / _ \ | |\/| |\___ \ \___ \| __/ _ \| '__/ _ \
| | \ \ __/ | | | | | (_) \ V / __/ | | | |____) | ____) | || (_) | | | __/
|_| \_\___|_| |_| |_|\___/ \_/ \___| |_|_ |_|_____/ |_____/ \__\___/|_| \___|
/\ | | | | | (_) (_) |
/ \ _ __ _ __ ___ | | | | |_ _| |_| |_ _ _
/ /\ \ | '_ \| '_ \/ __| | | | | __| | | | __| | | | Mike Galvin
/ ____ \| |_) | |_) \__ \ | |__| | |_| | | | |_| |_| | https://gal.vin
/_/ \_\ .__/| .__/|___/ \____/ \__|_|_|_|\__|\__, |
| | | | __/ | Version 23.04.28
|_| |_| |___/ See -help for usage
Donate: https://www.paypal.me/digressive
"
}
If ($PSBoundParameters.Values.Count -eq 0 -or $Help)
{
Write-Host -Object "Usage:
From an elevated terminal run: [path\]Remove-MS-Store-Apps.ps1 -List [path\]apps-to-remove.txt
This will remove the apps in the txt file from your Windows installation for all users.
To list apps for all users: -PCApps.
To list apps for the current user: -UserApps.
To operate on a wim file: -Wim [path\]install.wim -WimIndex [number] (optional: -WimMountPath [path\])
Run the following command to find out the WimIndex for your wim file:
Get-WindowsImage -ImagePath [path\]install.wim | Format-Table -Property ImageIndex, ImageName
To output a log: -L [path\].
To remove logs produced by the utility older than X days: -LogRotate [number].
Run with no ASCII banner: -NoBanner"
}
else {
## If logging is configured, start logging.
## If the log file already exists, clear it.
If ($LogPathUsr)
{
## Clean User entered string
$LogPath = $LogPathUsr.trimend('\')
## Make sure the log directory exists.
If ((Test-Path -Path $LogPath) -eq $False)
{
New-Item $LogPath -ItemType Directory -Force | Out-Null
}
$LogFile = ("Remove-MS-Store-Apps_{0:yyyy-MM-dd_HH-mm-ss}.log" -f (Get-Date))
$Log = "$LogPath\$LogFile"
If (Test-Path -Path $Log)
{
Clear-Content -Path $Log
}
}
## Function to get date in specific format.
Function Get-DateFormat
{
Get-Date -Format "yyyy-MM-dd HH:mm:ss"
}
## Function for logging.
Function Write-Log($Type, $Evt)
{
If ($Type -eq "Info")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [INFO] $Evt"
}
Write-Host -Object "$(Get-DateFormat) [INFO] $Evt"
}
If ($Type -eq "Succ")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [SUCCESS] $Evt"
}
Write-Host -ForegroundColor Green -Object "$(Get-DateFormat) [SUCCESS] $Evt"
}
If ($Type -eq "Err")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [ERROR] $Evt"
}
Write-Host -ForegroundColor Red -BackgroundColor Black -Object "$(Get-DateFormat) [ERROR] $Evt"
}
If ($Type -eq "Conf")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$Evt"
}
Write-Host -ForegroundColor Cyan -Object "$Evt"
}
}
## Function for Update Check
Function UpdateCheck()
{
$ScriptVersion = "23.04.28"
$RawSource = "https://raw.githubusercontent.com/Digressive/Remove-MS-Store-Apps/master/Remove-MS-Store-Apps.ps1"
try {
$SourceCheck = Invoke-RestMethod -uri "$RawSource"
$VerCheck = $SourceCheck -split '\n' | Select-String -Pattern ".VERSION $ScriptVersion" -SimpleMatch -CaseSensitive -Quiet
If ($VerCheck -ne $True)
{
Write-Log -Type Conf -Evt "*** There is an update available. ***"
}
}
catch {
}
}
## Check for the apps list file, if it exists then sanitise it and if it doesn't exist then report and exit.
If ($AppListFile)
{
If (Test-Path -Path $AppListFile)
{
$AppsList = Get-Content $AppListFile | Where-Object {$_.trim() -ne ""}
}
else {
Write-Log -Type Err -Evt "The app list file $AppListFile does not exist."
Exit
}
}
If ($null -eq $AppListFile -And $PCApps -eq $false -And $UserApps -eq $false)
{
Write-Log -Type Err -Evt "No app list specified."
Exit
}
## Getting Windows Version info
$OSVMaj = [environment]::OSVersion.Version | Select-Object -expand major
$OSVMin = [environment]::OSVersion.Version | Select-Object -expand minor
$OSVBui = [environment]::OSVersion.Version | Select-Object -expand build
$OSV = "$OSVMaj" + "." + "$OSVMin" + "." + "$OSVBui"
##
## Display the current config and log if configured.
##
Write-Log -Type Conf -Evt "--- Running with the following config ---"
Write-Log -Type Conf -Evt "Utility Version: 23.04.28"
UpdateCheck ## Run Update checker function
Write-Log -Type Conf -Evt "Hostname: $Env:ComputerName."
Write-Log -Type Conf -Evt "Windows Version: $OSV."
If ($AppListFile)
{
Write-Log -Type Conf -Evt "Using list from file: $AppListFile."
}
If ($WimFile)
{
Write-Log -Type Conf -Evt "Wim File: $WimFile."
}
If ($WIndex)
{
Write-Log -Type Conf -Evt "Wim Index: $WIndex."
}
If ($WimMntPath)
{
Write-Log -Type Conf -Evt "Wim Mount Path: $WimMntPath."
}
If ($LogPathUsr)
{
Write-Log -Type Conf -Evt "Logs directory: $LogPath."
}
If ($Null -ne $LogHistory)
{
Write-Log -Type Conf -Evt "Logs to keep: $LogHistory days"
}
If ($AppListFile)
{
Write-Log -Type Conf -Evt "Apps to remove:"
ForEach ($App in $AppsList)
{
Write-Log -Type Conf -Evt "$App"
}
}
Write-Log -Type Conf -Evt "---"
Write-Log -Type Info -Evt "Process started"
##
## Display current config ends here.
##
##
## Online Mode
##
If ($Null -eq $WimFile)
{
## Remove the Apps listed in the file or report if app not present.
ForEach ($App in $AppsList)
{
$PackageFullName = (Get-AppxPackage $App).PackageFullName
$ProPackageFullName = (Get-AppxProvisionedPackage -Online | Where-Object {$_.Displayname -eq $App}).PackageName
If ($PackageFullName)
{
Write-Log -Type Info -Evt "Removing Package: $App"
Remove-AppxPackage -Package $PackageFullName | Out-Null
}
else {
Write-Log -Type Info -Evt "Unable to find package: $App"
}
If ($ProPackageFullName)
{
Write-Log -Type Info -Evt "Removing Provisioned Package: $ProPackageFullName"
Remove-AppxProvisionedPackage -Online -PackageName $ProPackageFullName | Out-Null
}
else {
Write-Log -Type Info -Evt "Unable to find provisioned package: $App"
}
}
}
##
## Offline Mode
##
If ($WimFile)
{
## Default Wim Mount Path if none is configured.
If ($Null -eq $WimMntPath)
{
$WimMntPath = "$Env:temp\RemMSStoreApps-WimMount"
}
## Make sure the mount directory exists, if it doesn't create it.
If ((Test-Path -Path $WimMntPath) -eq $False)
{
New-Item $WimMntPath -ItemType Directory -Force | Out-Null
}
## Mount the Image.
Mount-WindowsImage -ImagePath $WimFile -Index $WIndex -Path $WimMntPath | Out-Null
## Remove the Apps listed above or report if app not present.
ForEach ($App in $AppsList)
{
$ProPackageFullName = (Get-AppxProvisionedPackage -Path $WimMntPath | Where-Object {$_.Displayname -eq $App}).PackageName
If ($ProPackageFullName)
{
Write-Log -Type Info -Evt "Removing Provisioned Package: $ProPackageFullName"
Remove-AppxProvisionedPackage -Path $WimMntPath -PackageName $ProPackageFullName | Out-Null
}
else
{
Write-Log -Type Info -Evt "Unable to find provisioned package: $App"
}
}
## Dismount the image and save changes.
Dismount-WindowsImage -Path $WimMntPath -Save | Out-Null
}
If ($PCApps)
{
Get-AppxProvisionedPackage -Online | Select-Object DisplayName | Format-Table -HideTableHeaders
If ($LogPathUsr)
{
Get-AppxProvisionedPackage -Online | Select-Object DisplayName | Format-Table -HideTableHeaders | Out-File -Append $Log -Encoding ASCII
}
}
If ($UserApps)
{
Get-AppxPackage | Select-Object Name | Format-Table -HideTableHeaders
If ($LogPathUsr)
{
Get-AppxPackage | Select-Object Name | Format-Table -HideTableHeaders | Out-File -Append $Log -Encoding ASCII
}
}
Write-Log -Type Info -Evt "Process finished."
If ($Null -ne $LogHistory)
{
## Cleanup logs.
Write-Log -Type Info -Evt "Deleting logs older than: $LogHistory days"
Get-ChildItem -Path "$LogPath\Remove-MS-Store-Apps_*" -File | Where-Object CreationTime -lt (Get-Date).AddDays(-$LogHistory) | Remove-Item -Recurse
}
}
## End