Advertisement
ReActif

CleanLogs.bat

Nov 21st, 2022
1,154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.60 KB | None | 0 0
  1. :: CLEANLOG.BAT
  2. :: 2022.11.21
  3. :: ReActif
  4. ::
  5. :: This script delete all log files and log folder in CP2077
  6.  
  7. @echo off
  8. title DELETE LOG FILES
  9. cls
  10.  
  11. :Variables
  12. :: SET YOUR GAME PATH WITHOUT THE LAST \
  13. set game_path=C:\Program Files (x86)\Steam\steamapps\common\Cyberpunk 2077
  14.  
  15. :CyberEngineTweaks
  16. del /q /s "%game_path%\bin\x64\plugins\*.log"
  17. del /q /s "%game_path%\bin\x64\plugins\cyber_engine_tweaks\*.sqlite3"
  18.  
  19. :R6
  20. del /q /s "%game_path%\r6\cache\*.log"
  21. rmdir /q /s "%game_path%\r6\logs"
  22.  
  23. :Red4Ext
  24. rmdir /q /s "%game_path%\red4ext\logs"
  25. del /q /s "%game_path%\red4ext\plugins\*.log"
  26.  
  27. :End
  28. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement