home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 April
/
PCWorld_1999-04_cd.bin
/
Software
/
Servis
/
Jar102en
/
jar102x.exe
/
JARINCR.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-09-18
|
374b
|
11 lines
REM JAR program to incrementally backup one drive to another drive
REM This program assumes that there is work space available on the hard drive
if "%1" == "" goto param_err
if "%2" == "" goto param_err
JAR16 a -r -vvas -b0 -hba1 -w%1:\ -jt %2:\backup %1:\
goto end
:param_err
REM Usage: JARINCR hard_drive_letter diskette_drive_letter
REM JARINCR C A
:end