home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1999 mARCH
/
PCWK3A99.iso
/
Archiwiz
/
Jar102
/
jar102.exe
/
JARREST.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-09-18
|
278b
|
10 lines
REM JAR program to restore archives on a drive to another drive overwriting
if "%1" == "" goto param_err
if "%2" == "" goto param_err
JAR16 x -y %1:backup -o%2:\
goto end
:param_err
REM Usage: JARREST diskette_drive_letter hard_drive_letter
REM JARREST A C
:end