@echo off
echo BkQ.bat Quick hot Backup to zips, without burning a DVD 2011-11-07
rem Called by the user from the command line, or a butterfly desktop shortcut.
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 Tell other bat files that it is safe to access the data files again.
call unbusy.btm
rem -30-