-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBleachBitClean.cmd
More file actions
32 lines (25 loc) · 899 Bytes
/
BleachBitClean.cmd
File metadata and controls
32 lines (25 loc) · 899 Bytes
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
::Name: BleachBit Clean
::Creator: Christine Bettencourt
::Script Language: Command Prompt
::Created: 11/11/2024
::Last Edited: 11/12/2024
@echo off
::Change Console Encoding
chcp 65001
::Set Pythonioencoding Environment Variable
set Pythonioencoding=UTF-8
::Change to the Bleachbit installation directory
cd "C:\Program Files (x86)\BleachBit"
::Execute Bleachbit console cleaner with the specified operations
bleachbit_console.exe -c adobe_reader.* -s
bleachbit_console.exe -c deepscan.* -s
bleachbit_console.exe -c google_chrome.* -s
bleachbit_console.exe -c microsoft_edge.* -s
bleachbit_console.exe -c microsoft_office.* -s
bleachbit_console.exe -c paint.* -s
bleachbit_console.exe -c system.* -s
bleachbit_console.exe -c windows_defender.* -s
bleachbit_console.exe -c windows_media_player.* -s
bleachbit_console.exe -c windows_explorer.* -s
bleachbit_console.exe -c wordpad.* -s
pause