Advertisement
Landerin

DeepClean

Apr 30th, 2024 (edited)
921
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.99 KB | Gaming | 1 0
  1. :: Deep cleans the Sims3 cache files
  2. :: (PLACE IN YOUR 'Documents\Electronic Arts\The Sims 3' folder and run)
  3. :: Obligatory "I am not liable if this breaks your shit" message
  4.  
  5. @echo off
  6. setlocal
  7.  
  8. if exist DeviceConfig.log (
  9.  
  10.   del "CASPartCache.package"
  11.   del "compositorCache.package"
  12.   del "scriptCache.package"
  13.   del "simCompositorCache.package"
  14.   del "socialCache.package"
  15.  
  16.   del "DCCache\dcdb0.dbc"
  17.   del "DCCache\missingdeps.idx"
  18.  
  19.   del /Q "Downloads\*.bin"
  20.  
  21.   del /Q "SigsCache\*.bin"
  22.  
  23.   del /Q "Thumbnails\*.package"
  24.  
  25.   if exist FeaturedItems\ (
  26.     del /Q "FeaturedItems\*"
  27.     rd FeaturedItems
  28.     type nul > FeaturedItems
  29.   )
  30.  
  31.   del /Q "WorldCaches\*"
  32.  
  33.   for %%a in ("DCBackup\*") do if /i not "%%~nxa"=="ccmerged.package" del "%%a"
  34.  
  35.   del -Q xcpt*
  36.   del -Q ScriptError_*
  37.   del -q KW*
  38.  
  39. ) else (
  40.   echo "This file does not appear to be in the correct directory! Please place this file in your 'Documents\Electronic Arts\The Sims 3' folder."
  41.   pause
  42. )
  43.  
  44. GOTO :EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement