home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
LGBX
/
BEZ410.ZIP
/
FULSCRPT.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-11-26
|
1KB
|
22 lines
@ECHO OFF
rem ╔═══════════════════════════════════════╗
rem ║ FULLSCRPT.BAT - Sample batch file. ║
rem ║ Uses Script file - FULL.CMD ║
rem ╚═══════════════════════════════════════╝
BACKEZ %1 %2 /B/C=full.cmd/AUTO
rem ┌════════════════════════════════════════════════════════════════┐
rem │ This Batch file will perform a Full backup on the drive that │
rem │ it is executed from to the default drive A:. It uses the Script│
rem │ File "FULL.CMD" to SET the correct Options and also INCLUDES │
rem │ \*.*, therefore selecting all files by starting at the Root │
rem │ directory and including all subdirectories. You can view │
rem │ the script file "FULL.CMD" using BackEZ. │
rem └════════════════════════════════════════════════════════════════┘
rem * BACKEZ - is the command to execute BackEZ.
rem * %1 - may be entered to specify the 'FROM' drive.
rem * %2 - may be entered to specify the 'TO' drive.
rem * /B - skips the Main Menu and goes directly to the Backup Menu.
rem * /C=full.cmd - sets the Script File to FULL.CMD.
rem * /AUTO - skips the Backup Menu and goes to the Backup Processing Window.
rem * since /AUTO is used BackEZ will exit to DOS after the backup is complete.