Created
January 18, 2021 07:20
-
-
Save dreulavelle/7c0856bc68ad297321d669b095e6b9a3 to your computer and use it in GitHub Desktop.
Clean Up Kodi Directory to get folder ready for Zipping. Perfect tool to use on Windows machine to clean up the Kodi folder before zipping files for use in personal builds. THIS DOES NOT HARM ANY ADDONS/PREFERENCES/SETTINGS MADE WITHIN KODI !!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TITLE | |
MODE 25,8 | |
@echo off | |
cls | |
COLOR 47 | |
echo **** KILLING KODI **** | |
TITLE KILL | |
taskkill /IM kodi.exe /f 2>nul: | |
timeout 3 >nul | |
cd %appdata% | |
cd Kodi | |
echo. | |
echo **** TIDYING UP **** | |
TITLE CLEAN | |
rmdir /S /Q media system My_Builds cache userdata\Thumbnails userdata\Savestates userdata\playlists userdata\library addons\packages addons\temp 2>nul: | |
del *.log 2>nul: | |
echo. | |
echo **** ALL DONE! **** | |
TITLE DONE | |
COLOR 27 | |
echo. | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
### WARNING:
This batch script will remove the following folders!
NOT RESPONSIBLE FOR MISSING FILES/FOLDERS OR ANY MISSING HARD WORK!