I was trying to make a prank on Rain, so I sent him some batch "viruses". But nothing happened. Maybe Windows 7 just sucks?
Posted 14 years ago
Ez1o wrote:
Maybe Windows 7 just sucks?
No
Posted 14 years ago
didnt notice that there is clear imvu cache in the setting tilll i read this post, i useally do it manually , thx alot
Posted 13 years ago
D.M wrote:
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.
Code
@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".
Does this still work?
Posted 13 years ago
Yes, it still works.
Posted 13 years ago
Okay, thankyou -offers cake-
Posted 13 years ago
If you want, you can even tell your computer to run the batch file once a night, to auto-clear the cache on a regular basis.
Just do the same as the video, except tell task scheduler to run the batch instead of a sound file.
Posted 13 years ago
I dont have da patience fo alll dat
Posted 13 years ago
Its superb and great great sharing really incredible and great work done ever
Posted 13 years ago
Updated the code:
Code
@ECHO off
ECHO. ECHO Warning, This Script Will Delete Your Imvu Logs And Cache ECHO Continue? (Y/N) ECHO.
set input=Y set input=y set input=N set input=n set /p input= IF %input%==Y goto Run IF %input%==y goto Run IF %input%==N goto Exit IF %input%==n goto Exit
:Run IF Exist "%APPDATA%\IMVUClient\" ( CLS CD %APPDATA%\IMVUClient\ui\profile\Cache ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\ProductFiles" ( CLS CD %APPDATA%\IMVU\ProductFiles ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\Cache" ( CLS CD %APPDATA%\IMVU\Cache ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\AssetCache" ( CLS CD %APPDATA%\IMVU\AssetCache ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\HttpCache" ( CLS CD %APPDATA%\IMVU\HttpCache ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\PixmapCache" ( CLS CD %APPDATA%\IMVU\PixmapCache ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU\avpics" ( CLS CD %APPDATA%\IMVU\avpics ECHO Deleting... ECHO Y | DEL *.* )
IF Exist "%APPDATA%\IMVU" ( CLS CD %APPDATA%\IMVU ECHO Deleting... ECHO Y | DEL *.cache* ECHO Y | DEL *.log* ECHO Y | DEL *.xml* ECHO Y | DEL *.1* ECHO Y | DEL *.2* ECHO Y | DEL *.3* ECHO Y | DEL *.4* ECHO Y | DEL *.5* ECHO Y | DEL *.6* )
GOTO AviReset
:AviReset ECHO. ECHO Warning, This Will Reset Your Avi To A Defualt Imvu Avi ECHO Continue? (Y/N) ECHO.
set input=Y set input=y set input=N set input=n set /p input= if %input%==Y goto AviResetY if %input%==y goto AviResetY if %input%==N goto Done if %input%==n goto Done
:AviResetY IF Exist "%APPDATA%\IMVU" ( CLS CD %APPDATA%\IMVU ECHO Deleting... ECHO Y | DEL *productInfoCache.db* )