-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcleanup.bat
More file actions
23 lines (18 loc) · 682 Bytes
/
cleanup.bat
File metadata and controls
23 lines (18 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@echo off
:: Explorer
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\WordWheelQuery" /f
:: PowerShell
del /q /f "%APPDATA%\Microsoft\Windows\PowerShell\PSReadline\*.txt"
:: WinRAR
reg delete "HKCU\Software\WinRAR\ArcHistory" /f
:: CMake
reg delete "HKCU\Software\Kitware" /f
:: Other
rmdir /s /q "%USERPROFILE%\.thumbnails"
rmdir /s /q "%LOCALAPPDATA%\fontconfig"
del /q /f "%USERPROFILE%\.bash_history"
del /q /f "%LOCALAPPDATA%\lxss\home\%USERNAME%\.bash_history"
del /q /f "%USERPROFILE%\.lesshst"
del /q /f "%USERPROFILE%\.node_repl_history"
del /q /f "%USERPROFILE%\.mupdf.history"
del /q /f "%USERPROFILE%\.recently-used.xbel"