Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: CLEANLOG.BAT
- :: 2022.11.21
- :: ReActif
- ::
- :: This script delete all log files and log folder in CP2077
- @echo off
- title DELETE LOG FILES
- cls
- :Variables
- :: SET YOUR GAME PATH WITHOUT THE LAST \
- set game_path=C:\Program Files (x86)\Steam\steamapps\common\Cyberpunk 2077
- :CyberEngineTweaks
- del /q /s "%game_path%\bin\x64\plugins\*.log"
- del /q /s "%game_path%\bin\x64\plugins\cyber_engine_tweaks\*.sqlite3"
- :R6
- del /q /s "%game_path%\r6\cache\*.log"
- rmdir /q /s "%game_path%\r6\logs"
- :Red4Ext
- rmdir /q /s "%game_path%\red4ext\logs"
- del /q /s "%game_path%\red4ext\plugins\*.log"
- :End
- exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement