NPCScan Helpful Trick
Posted: Tue Apr 26, 2011 10:58 am
This is just a simple batch file, it deletes your cache and opens the Launcher. Use it in place of your normal WoW executable.
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
If you do not use the above path for your WoW directory, change the path accordingly.
Vista/Win7
If you do not use the above path for your WoW directory, change the path accordingly.
Also major thanks to Foru21dr for providing the default WoW directory for Win7/Vista. Just need someone to verify that this batch file works.
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.