Hello, After browsing mmowned for quite a long time I finally found something that I would be able to contribute. I know that .bat files are generally not wanted here but I felt that this one might be of some help, and it really is WoW related so wouldn't exactly fit under "General Apps"
I made this mainly for myself, figured maybe for some reason someone might have a use for it. Say you have an external HD/Flash drive that you backup your stuff to and want a quick way (1 click) to backup your WoW interface folder / WTF folder (you could even set it to do your entire WoW folder if you wanted and keep that up to date. Did this because I had to reformat because I messed up my computer / was unable to boot up so I lost a bunch of addons.
Code:
@echo off
:: variables
set drive=F:\
set backupcmd=xcopy /s /c /d /e /h /i /r /k /y
echo ### Backing up Your Interface Folder...
%backupcmd% "C:\Program Files\World of Warcraft\Interface" "%drive%\Backup folder\World of Warcraft"
echo ### Backing up Your WTF Folder...
%backupcmd% "C:\Program Files\World of Warcraft\WTF" "%drive%\Backup folder\World of Warcraft"
echo Backup Complete!
@pause
Copy that in to notepad (edit the "set drive=F:\" to your externals drive letter) then go to Save as, and under Save as Type do All Files and name it WoW Backup.bat
Then click it and it keeps your WoW folder in sync with your external/flash drive.
You can also pair this up with the Task Scheduler under windows system tools and have it auto run every week or so.
If this is deemed as an annoying .bat file I apologize but hope this may be of some help to someone![]()
If you found this helpful would love to hear a simple thanks![]()