Copy and paste the following into a notepad document and name it whatever, just be sure to add ".bat" to the end of it, which will convert it into a batch file.
Non Win7/Vista
Code: Select all
@echo off
echo loading ....
echo Your Cache is deleted, we are now starting World Of Warcraft!
echo.
rmdir /s /q "C:\Program Files\World of Warcraft\Cache"
CD C:\Program files\World of Warcraft\
START Launcher.exe
exit
Vista/Win7
Code: Select all
@echo off
echo loading ....
echo Your Cache is deleted, we are now starting World Of Warcraft!
echo.
rmdir /s /q "C:\users\public\games\World of Warcraft\Cache"
CD C:\users\public\World of Warcraft\
START Launcher.exe
exit
Also major thanks to Foru21dr for providing the default WoW directory for Win7/Vista. Just need someone to verify that this batch file works.