This batch script performs the same function as clearing your cache. It deletes every cache file, every log file, every log backup file (The .1 .2 .3 etc.. files), and product files left over in the previewer folder.
@echo off
cls
cd %APPDATA%\IMVUClient\ui\profile\Cache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU Previewer\ProductFiles
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\ProductFiles
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\Cache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\PixmapCache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\AssetCache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\avpics
ECHO Y | DEL *.*
cd %APPDATA%\IMVU
ECHO Y | DEL *.cache*
ECHO Y | DEL *.log*
ECHO Y | DEL *.1*
ECHO Y | DEL *.2*
ECHO Y | DEL *.3*
ECHO Y | DEL *.4*
ECHO Y | DEL *.5*
ECHO Y | DEL *.6*
pause
Copy the code, paste it into an empty notepad and save it as "Clear Imvu Files.bat".