home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
LGBX
/
BEZ410.ZIP
/
MOD.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-11-26
|
1KB
|
24 lines
@ECHO OFF
rem ╔═══════════════════════════════════════╗
rem ║ MOD.BAT - Sample batch file. ║
rem ╚═══════════════════════════════════════╝
BACKEZ %1 %2 /B/+M/+S/-V/ATTR=+r+h+s/K=+0/D=+01-01-80/+RESET/C=/AUTO
rem ┌════════════════════════════════════════════════════════════════┐
rem *│ This Batch file will perform a backup of modified files only. │
rem └════════════════════════════════════════════════════════════════┘
rem * BACKEZ - is the command to execute BackEZ.
rem * %1 - may be entered to specify the 'FROM' drive, path and file.
rem * %2 - may be entered to specify the 'TO' drive.
rem * /B - skips the Main Menu and goes directly to the Backup Menu.
rem * /+M - sets the Modified Option to Yes.
rem * /+S - sets the Subdirectory Option to Yes.
rem * /-V - sets the Verify Option to No.
rem * /ATTR=+r+h+s - sets the Attributes Option to include Read only, Hidden
rem * and System files.
rem * /K=+0 - sets the Ksize Option to plus 0.
rem * /D=+01-01-80 - sets the Date Option to plus 01-01-80.
rem * /+RESET - sets the Reset Option to Yes.
rem * /C= - sets the Script File to no Script File.
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.