@echo off :: This Will Backup The LOR files To where you want them. :: Just Enter The INFO needed below; after the "=" with no spaces. :: after giving the needed INFO :: Save the file as "LORbackuper.bat" :: DO NOT Change "set XXXXXX=" :: Where The "Sequences Folder" is that needs to be Backed-up. :: EX...set Seq=C:\Documents and Settings\admin\My Documents\LOR\Sequences set Seq= :: Where The "Audio Folder" is that needs to be Backed-up. :: EX...set Aud=C:\Documents and Settings\admin\My Documents\LOR\Audio set Aud= :: Where To Save the Backed-up Files and folders TO: :: EX...set backuplor=D:\backupLORfiles\LOR set backuplor= ::------------------------------------------------------------- :: Not For you to mess with :: DO NOT Change From here Down. ::MAIN PROGRAME set backupcmd=xcopy /s /c /d /e /h /i /r /y :: Backup LOR Sequences Files %backupcmd% "%seq%" "%backuplor%\Sequences" :: Backup LOR Audio Files %backupcmd% "%Aud%" "%backuplor%\Audio" :: use below syntax to backup other directories... :: %backupcmd% "...source directory..." "%drive%\...destination dir..." :: are for comments @pause exit