I have a question about the BAT file.
First, I am using win7x64 (on my crappy alienware laptop)
I like the way my game is installed. It does use the Virtual store for all my special data info.
Is there a way to have a bat file delete them in the Virtual store and still run the WoW for me?
(again I know I can just easily MOVE the entire WOW folder to Desktop &/or C:\Game\Nostalrius
or run in admin mode.)
The question is can a ".bat" file be written to do this without me having to move my actual folder/Run in admin mode.
PS - I do switch from PvE - PvP - PTR.
EDit:
I think I got one working:
- Code: Select all
     @echo off
    rem checking if WoW is in the program files
    IF EXIST "C:\Program Files (x86)\World of Warcraft Classic" (
    GOTO :hell
    ) ELSE (
    GOTO :xkcd292
    )
    :hell
    GOTO :xkcd292
    :xkcd292
    rem deleting wdb folder inside the virtualstore directory - no half measures
    cd "C:\Users\%username%\AppData\Local\VirtualStore\Program Files (x86)\Blizzard\World of Warcraft Classic"
    rd /s /q WDB