@echo off echo Bk.bat full Backup to DVD via hot Zip file intermediate backup 2011-12-31 rem Called by the user from the command line, or an elephant desktop shortcut. echo Just dismiss Window's popup offer to format your blank DVD. echo This script will do it in the appropriate way automatically. rem E:\env is where I keep my bat files. E: cd \env rem Tell other bat files that is it not safe to access the data files. rem Block this script if some other bat file is busy with the files. call busy.btm rem Clean up files prior to backup. Get rid of junk. call bkclean.bat rem Back up important datafiles to zips. call bktozips.bat rem rem ALTERNATE 1 attended back up zips to DVD using Nero Kwikmedia. rem call bkburnwithnero.bat rem ALTERNATE 2 unattended, but inefficient, back up zips to DVD using JpSoft Take Command tcc utilities. rem call bkburnwithtcc.btm rem ALTERNATE 3 unattended back up zips to DVD using Cdrtools. call bkburnwithcdrtools.bat rem ALTERNATE 4 unattended back up zips to thumbdrive using JpSoft take Command tcc utilities. rem call bkburntothumbdrivewithtcc.btm rem Do post backup processing, e.g. reindex, defrag... call bkwindup.bat rem Tell other bat files that it is safe to access the data files again. call unbusy.btm rem -30-