Bengan12
Well-Known Member
- Joined
- Feb 24, 2011
- Messages
- 1,967
- Reaction score
- 31
Got tired off clearing the cashe 50 times a day, so i made a script to ckear all cashe at once.
1. You need to open notepad.
2. copy in this and replace "your folder directory" with for example C:\my name\honorbuddy\ and the wow part with the wow links.
Also change C: to what ever you use, and remove the " "...
then press "Arcive" select "Save As" Change the .txt to All or Any.
Enter random name and add .bat after.
Run and be happy, you just cleared HB cache, HB CompiledAssemblies (not needed but wont hurt)
Wow cache, wow data cache and wow account cache, last one might not be needed but not hurt.
Would put this in guides but i can?t post there :C
1. You need to open notepad.
2. copy in this and replace "your folder directory" with for example C:\my name\honorbuddy\ and the wow part with the wow links.
Also change C: to what ever you use, and remove the " "...
Code:
@echo off
del C:\"your folder directory"\honorbuddy\Cache\*.* /Q
del /Q C:\"your folder directory"\honorbuddy\CompiledAssemblies\*.*
for /f "tokens=* delims=" %%j in ('dir "C:\Games\Questing\World of Warcraft\WTF\Account\" /B /AD') do (
RD "C:\"your folder directory"\World of Warcraft\WTF\Account\%%j" /S /Q)
for /f "tokens=* delims=" %%j in ('dir "C:\"your folder directory"\World of Warcraft\Cache\" /B /AD') do (
RD "C:\Games\Questing\World of Warcraft\Cache\%%j" /S /Q)
for /f "tokens=* delims=" %%j in ('dir "C:\"your folder directory"\World of Warcraft\Data\Cache\" /B /AD') do (
RD "C:\"your folder directory"\World of Warcraft\Data\Cache\%%j" /S /Q)
then press "Arcive" select "Save As" Change the .txt to All or Any.
Enter random name and add .bat after.
Run and be happy, you just cleared HB cache, HB CompiledAssemblies (not needed but wont hurt)
Wow cache, wow data cache and wow account cache, last one might not be needed but not hurt.
Would put this in guides but i can?t post there :C
Last edited by a moderator: