.Key file
if not exists <file>
   echo "File <file> does not exist.  Try again."
   skip END
endif

echo "Copying <file> to <file>.bak ... " NOLINE
c:copy <file> to <file>.bak
echo "Done."

LAB END