-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBleachBitOverwrite.cmd
More file actions
31 lines (25 loc) · 992 Bytes
/
BleachBitOverwrite.cmd
File metadata and controls
31 lines (25 loc) · 992 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
::Name: BleachBit Overwrite
::Creator: Christine Bettencourt
::Script Language: Command Prompt
::Created: 11/13/2024
::Last Edited: 11/13/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 overwrite with the specified operations
bleachbit_console.exe -overwrite adobe_reader.* -s
bleachbit_console.exe -overwrite deepscan.* -s
bleachbit_console.exe -overwrite google_chrome.* -s
bleachbit_console.exe -overwrite microsoft_edge.* -s
bleachbit_console.exe -overwrite microsoft_office.* -s
bleachbit_console.exe -overwrite paint.* -s
bleachbit_console.exe -overwrite system.* -s
bleachbit_console.exe -overwrite windows_defender.* -s
bleachbit_console.exe -overwrite windows_media_player.* -s
bleachbit_console.exe -overwrite windows_explorer.* -s
bleachbit_console.exe -overwrite wordpad.* -s
pause