home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo **** INCREMENTAL DUMP PROCEDURE V1.00 ****
- if .%1==. goto novol
- cd \
- type c:\bat\idate
- echo Checking disk integrity. . .
- chkdsk/f
- echo Ready for backup to floppy disks. . .
- pause
- backup c: a:/s/m
- if errorlevel 4 goto berror
- if errorlevel 3 goto killed
- if errorlevel 1 goto nofiles
- echo Incremental Dump Level %1 done on: > \bat\idate
- gtod >> c:\bat\idate
- gtod >> c:\bat\idate.log
- goto done
- :novol
- echo An Incremental Dump Level number must be supplied
- echo ** Aborting procedure **
- goto done
- :nofiles
- echo No files found to backup. Date logs not updated.
- goto done
- :killed
- echo User termination. Date logs not updated.
- goto done
- :berror
- echo *** Error Termination ** Date logs not updated.
- :done
- echo on