-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDriveClean.ps1
501 lines (439 loc) · 18.5 KB
/
DriveClean.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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
#------------------------------------------------------------------#
#- Clear-GlobalWindowsCache #
#------------------------------------------------------------------#
Function Clear-GlobalWindowsCache
{
Remove-Dir "C:\Windows\Temp"
Remove-Dir "C:\Temp"
Remove-Dir "C:\tmp"
#Remove-Dir "C:\`$Recycle.Bin"
Remove-Dir "C:\Windows\Prefetch"
C:\Windows\System32\rundll32.exe InetCpl.cpl, ClearMyTracksByProcess 255
C:\Windows\System32\rundll32.exe InetCpl.cpl, ClearMyTracksByProcess 4351
# Remove printer queued files
Stop-Service -Name "spooler"
Remove-Dir "C:\Windows\System32\spool\PRINTERS\"
Start-Service -Name "spooler"
}
#------------------------------------------------------------------#
#- Clear-UserCacheFiles #
#------------------------------------------------------------------#
Function Clear-UserCacheFiles
{
# Stop-BrowserSessions
ForEach ($localUser in (Get-ChildItem "C:\users").Name)
{
Clear-AcrobatCacheFiles $localUser
Clear-AVGCacheFiles $localUser
Clear-BattleNetCacheFiles $localUser
Clear-ChromeCacheFiles $localUser
Clear-DiscordCacheFiles $localUser
Clear-EdgeCacheFiles $localUser
Clear-EpicGamesCacheFiles $localUser
Clear-FirefoxCacheFiles $localUser
Clear-GoogleEarth $localUser
Clear-iTunesCacheFiles $localUser
Clear-LibreOfficeCacheFiles $localUser
Clear-LolScreenSaverCacheFiles $localUser
Clear-MicrosoftOfficeCacheFiles $localUser
Clear-SteamCacheFiles $localUser
Clear-TeamsCacheFiles $localUser
Clear-ThunderbirdCacheFiles $localUser
Clear-WindowsUserCacheFiles $localUser
}
}
#------------------------------------------------------------------#
#- Clear-WindowsUserCacheFiles #
#------------------------------------------------------------------#
Function Clear-WindowsUserCacheFiles
{
param([string]$user = $env:USERNAME)
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Internet Explorer\Cache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Internet Explorer\Recovery"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Internet Explorer\Tiles"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Terminal Server Client\Cache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\Caches"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\History\low"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\IECompatCache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\IECompatUaCache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\IEDownloadHistory"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\INetCache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\Temporary Internet Files"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\WebCache"
Remove-Dir "C:\Users\$user\AppData\Local\Microsoft\Windows\WER"
Remove-Dir "C:\Users\$user\AppData\Local\Temp"
}
#------------------------------------------------------------------#
#- Clear-WUS-Cache Group #
#------------------------------------------------------------------#
Function CheckWUS
{
$s = Get-Service wuauserv
if ($s.Status -eq "Running")
{
return 0
}
else
{
return 1
}
}
Function StopWUS
{
Stop-Service wuauserv -Force
}
Function StartWUS
{
Start-Service wuauserv
}
Function WUSRunning
{
Write-Host "Windows Update Service is Running..." -ForegroundColor Red
Write-Host " Stopping Windows Update Service..." -ForegroundColor Blue
# Stopping Windows Update Service and check again if it is stopped
StopWUS
if (CheckWUS)
{
WUSStopped
}
else
{
Write-Host "Can't stop Windows Update Service..." -ForegroundColor Red
exit 1
}
Write-Host "Starting Windows Update Service..." -ForegroundColor Blue
# Starting the Windows Update Service again
StartWUS
}
Function FreeDiskSpace
{
param(
[string]$DiskLetter = 'C'
)
return ([math]::Round((Get-Volume -DriveLetter $DiskLetter | Select-Object @{ Name = "MB"; Expression = { $_.SizeRemaining/1MB } }).MB, 2))
}
Function WUSStopped
{
Write-Host "Windows Update Service is Stopped..." -ForegroundColor Green
# Getting free disk space before the cleaning actions
Write-Host " Free Disk Space before: " -ForegroundColor Blue -NoNewline
$Before = FreeDiskSpace
Write-Host "$Before MB"
Write-Host " Cleaning Files..." -ForegroundColor Blue -NoNewline
Get-ChildItem -LiteralPath $env:windir\SoftwareDistribution\Download\ -Recurse | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue
Write-Host "Done..." -ForegroundColor Green
# Getting free disk space after the cleaning actions
Write-Host " Free Disk Space after: " -ForegroundColor Blue -NoNewline
$After = FreeDiskSpace
Write-Host "$After MB"
# Calculating the free disk space difference
Write-Host " Cleaned: " -ForegroundColor Blue -NoNewline
$Cleaned = $After - $Before
Write-Host "$Cleaned MB"
}
# Program
if (CheckWUS)
{
WUSStopped
}
else
{
WUSRunning
}
#Region HelperFunctions
#------------------------------------------------------------------#
#- Stop-BrowserSessions #
#------------------------------------------------------------------#
Function Stop-BrowserSessions
{
$activeBrowsers = Get-Process Firefox*, Chrome*, Waterfox*, Edge*
ForEach ($browserProcess in $activeBrowsers)
{
try
{
$browserProcess.CloseMainWindow() | Out-Null
}
catch
{
}
}
}
#------------------------------------------------------------------#
#- Get-StorageSize #
#------------------------------------------------------------------#
Function Get-StorageSize
{
Get-WmiObject Win32_LogicalDisk |
Where-Object { $_.DriveType -eq "3" } |
Select-Object SystemName,
@{ Name = "Drive"; Expression = { ( $_.DeviceID) } },
@{ Name = "Size (GB)"; Expression = { "{0:N1}" -f ( $_.Size / 1gb) } },
@{ Name = "FreeSpace (GB)"; Expression = { "{0:N1}" -f ( $_.Freespace / 1gb) } },
@{ Name = "PercentFree"; Expression = { "{0:P1}" -f ( $_.FreeSpace / $_.Size) } } |
Format-Table -AutoSize | Out-String
}
#------------------------------------------------------------------#
#- Remove-Dir #
#------------------------------------------------------------------#
Function Remove-Dir
{
param([Parameter(Mandatory = $true)][string]$path)
if ((Test-Path "$path"))
{
Get-ChildItem -Path "$path" -Force -Recurse -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue -Verbose
}
}
#Endregion HelperFunctions
#Region Browsers
#Region ChromiumBrowsers
#------------------------------------------------------------------#
#- Clear-ChromeTemplate #
#------------------------------------------------------------------#
Function Clear-ChromeTemplate
{
param(
[Parameter(Mandatory = $true)][string]$path,
[Parameter(Mandatory = $true)][string]$name
)
if ((Test-Path $path))
{
Write-Output "Clear cache $name"
$possibleCachePaths = @("Cache", "Cache2\entries\", "ChromeDWriteFontCache", "Code Cache", "GPUCache", "JumpListIcons", "JumpListIconsOld", "Media Cache", "Service Worker", "Top Sites", "VisitedLinks", "Web Data")
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$path\$cachePath"
}
}
}
#------------------------------------------------------------------#
#- Clear-MozillaTemplate #
#------------------------------------------------------------------#
Function Clear-MozillaTemplate
{
param(
[Parameter(Mandatory = $true)][string]$path,
[Parameter(Mandatory = $true)][string]$name
)
if ((Test-Path $path))
{
Write-Output "Clear cache $name"
$AppDataPath = (Get-ChildItem "$path" | Where-Object { $_.Name -match "Default" }[0]).FullName
$possibleCachePaths = @("cache", "cache2\entries", "thumbnails", "webappsstore.sqlite", "chromeappstore.sqlite")
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$AppDataPath\$cachePath"
}
}
}
#------------------------------------------------------------------#
#- Clear-ChromeCache #
#------------------------------------------------------------------#
Function Clear-ChromeCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\Google\Chrome\User Data\Default" "Browser Google Chrome"
Remove-Dir "C:\users\$user\AppData\Local\Google\Chrome\User Data\SwReporter\"
}
#------------------------------------------------------------------#
#- Clear-EdgeCache #
#------------------------------------------------------------------#
Function Clear-EdgeCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\Microsoft\Edge\User Data\Default" "Browser Microsoft Edge"
Remove-Dir "C:\users\$user\AppData\Local\Microsoft\Edge\User Data\Default\CacheStorage"
}
#Endregion ChromiumBrowsers
#Region FirefoxBrowsers
#------------------------------------------------------------------#
#- Clear-FirefoxCacheFiles #
#------------------------------------------------------------------#
Function Clear-FirefoxCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-MozillaTemplate "C:\users\$user\AppData\Local\Mozilla\Firefox\Profiles" "Browser Mozilla Firefox"
}
#------------------------------------------------------------------#
#- Clear-WaterfoxCacheFiles #
#------------------------------------------------------------------#
Function Clear-WaterfoxCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-MozillaTemplate "C:\users\$user\AppData\Local\Waterfox\Profiles" "Browser Waterfox"
}
#Endregion FirefoxBrowsers
#Endregion Browsers
#Region CommunicationPlatforms
#------------------------------------------------------------------#
#- Clear-TeamsCacheFiles #
#------------------------------------------------------------------#
Function Clear-TeamsCacheFiles
{
param([string]$user = $env:USERNAME)
if ((Test-Path "C:\users\$user\AppData\Roaming\Microsoft\Teams"))
{
$possibleCachePaths = @("application cache\cache", "blob_storage", "Cache", "Code Cache", "GPUCache", "logs", "tmp", "Service Worker\CacheStorage", "Service Worker\ScriptCache")
$teamsAppDataPath = "C:\users\$user\AppData\Roaming\Microsoft\Teams"
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$teamsAppDataPath\$cachePath"
}
}
}
#Endregion CommunicationPlatforms
#Region MiscApplications
#------------------------------------------------------------------#
#- Clear-ThunderbirdCacheFiles #
#------------------------------------------------------------------#
Function Clear-ThunderbirdCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-MozillaTemplate "C:\users\$user\AppData\Local\Thunderbird\Profiles" "Mozilla Thunderbird"
}
#------------------------------------------------------------------#
#- Clear-EpicGamesCacheFiles #
#------------------------------------------------------------------#
Function Clear-EpicGamesCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\EpicGamesLauncher\Saved\webcache" "Epic Games Launcher"
}
#------------------------------------------------------------------#
#- Clear-BattleNetCacheFiles #
#------------------------------------------------------------------#
Function Clear-BattleNetCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\Battle.net\BrowserCache" "BattleNet"
}
#------------------------------------------------------------------#
#- Clear-SteamCacheFiles #
#------------------------------------------------------------------#
Function Clear-SteamCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\Steam\htmlcache" "Steam"
}
#------------------------------------------------------------------#
#- Clear-LolScreenSaverCacheFiles #
#------------------------------------------------------------------#
Function Clear-LolScreenSaverCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\LolScreenSaver\cefCache" "Lol screen saver"
}
#------------------------------------------------------------------#
#- Clear-DiscordCacheFiles #
#------------------------------------------------------------------#
Function Clear-DiscordCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\Discord" "Discord"
}
#------------------------------------------------------------------#
#- Clear-AVGCacheFiles #
#------------------------------------------------------------------#
Function Clear-AVGCacheFiles
{
param([string]$user = $env:USERNAME)
Clear-ChromeTemplate "C:\users\$user\AppData\Local\AVG\User Data\Default" "Antivirus AVG"
}
#------------------------------------------------------------------#
#- Clear Google Earth #
#------------------------------------------------------------------#
Function Clear-GoogleEarth
{
param([string]$user = $env:USERNAME)
if (Test-Path C:\users\$user\AppData\LocalLow\Google\GoogleEarth)
{
Get-ChildItem "C:\users\$user\AppData\LocalLow\Google\GoogleEarth\unified_cache_leveldb_leveldb2\" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
Get-ChildItem "C:\users\$user\AppData\LocalLow\Google\GoogleEarth\webdata\" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
}
}
#------------------------------------------------------------------#
#- CleariTunesCacheFiles #
#------------------------------------------------------------------#
Function Clear-iTunesCacheFiles
{
param([string]$user = $env:USERNAME)
if ((Test-Path "C:\users\$user\AppData\Local\Apple Computer\iTunes"))
{
$iTunesAppDataPath = "C:\users\$user\AppData\Local\Apple Computer\iTunes"
$possibleCachePaths = @("SubscriptionPlayCache")
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$iTunesAppDataPath\$cachePath"
}
}
}
#------------------------------------------------------------------#
#- Clear-AcrobatCacheFiles #
#------------------------------------------------------------------#
Function Clear-AcrobatCacheFiles
{
param([string]$user = $env:USERNAME)
$DirName = "C:\users\$user\AppData\LocalLow\Adobe\Acrobat"
if ((Test-Path "$DirName"))
{
$possibleCachePaths = @("Cache", "ConnectorIcons")
ForEach ($AcrobatAppDataPath in (Get-ChildItem "$DirName").Name)
{
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$DirName\$AcrobatAppDataPath\$cachePath"
}
}
}
}
#------------------------------------------------------------------#
#- Clear-MicrosoftOfficeCacheFiles #
#------------------------------------------------------------------#
Function Clear-MicrosoftOfficeCacheFiles
{
param([string]$user = $env:USERNAME)
if ((Test-Path "C:\users\$user\AppData\Local\Microsoft\Outlook"))
{
Get-ChildItem "C:\users\$user\AppData\Local\Microsoft\Outlook\*.pst" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
Get-ChildItem "C:\users\$user\AppData\Local\Microsoft\Outlook\*.ost" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
Get-ChildItem "C:\users\$user\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.Outlook\*" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
Get-ChildItem "C:\users\$user\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.MSO\*" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
Get-ChildItem "C:\users\$user\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.Word\*" -Recurse -Force -ErrorAction SilentlyContinue |
remove-item -force -recurse -ErrorAction SilentlyContinue -Verbose
}
}
#------------------------------------------------------------------#
#- Clear-LibreOfficeCacheFiles #
#------------------------------------------------------------------#
Function Clear-LibreOfficeCacheFiles
{
param([string]$user = $env:USERNAME)
$DirName = "C:\users\$user\AppData\Roaming\LibreOffice"
if ((Test-Path "$DirName"))
{
$possibleCachePaths = @("cache", "crash", "user\backup", "user\temp")
ForEach ($LibreOfficeAppDataPath in (Get-ChildItem "$DirName").Name)
{
ForEach ($cachePath in $possibleCachePaths)
{
Remove-Dir "$DirName\$LibreOfficeAppDataPath\$cachePath"
}
}
}
}
#Endregion MiscApplications
#------------------------------------------------------------------#
#- MAIN #
#------------------------------------------------------------------#
$StartTime = (Get-Date)
Get-StorageSize
Clear-UserCacheFiles
Clear-GlobalWindowsCache
Get-StorageSize
$EndTime = (Get-Date)
Write-Verbose "Elapsed Time: $( ($StartTime - $EndTime).totalseconds ) seconds"