View Single Post
10-01-12, 05:35 PM   #6
suicidalkatt
A Rage Talon Dragon Guard
 
suicidalkatt's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 331
Create a text document with this inside, changing the directories to your choosing.
Code:
@echo OFF
cls
del "D:\UIBackup\AddOns\" /y
del "D:\UIBackup\WTF\" /y
xcopy "D:\Program Files\World of Warcraft\Interface\AddOns\*.*" "D:\UIBackup\AddOns\*.*" /e /v /y
xcopy "D:\Program Files\World of Warcraft\WTF\*.*" "D:\UIBackup\WTF\*.*" /e /v /y
echo Backup Complete.
Change the file extention to '.bat' from '.txt' and open to run the backup.

Alternatively, you can have this run when you shutdown your computer or on a schedule using Windows Scheduled Tasks.
  Reply With Quote