home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
basic
/
lb09c.zip
/
INST.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-02-24
|
876b
|
41 lines
@echo off
if "%1" == "" goto error
if exist %1%2\v09c.txt goto installed
md %1%2 > nul
copy liberty.exe %1%2 > nul
del liberty.exe > nul
copy vw????.dll %1%2 > nul
del vw????.dll > nul
copy vw?????.dll %1%2 > nul
del vw?????.dll > nul
copy vw*.dll %1%2 > nul
del vw*.dll > nul
copy liberty.txt %1%2 > nul
del liberty.txt > nul
copy lbas10.txt %1%2 > nul
del lbas10.txt > nul
copy summary.txt %1%2 > nul
del summary.txt > nul
copy register.txt %1%2 > nul
del register.txt > nul
copy diffrncs.txt %1%2 > nul
del diffrncs.txt > nul
copy lbasic.ini %1%2 > nul
del lbasic.ini > nul
copy libertyb.grp %1%2 > nul
del libertyb.grp > nul
copy v09c.txt %1%2 > nul
del v09c.txt > nul
copy *.bas %1%2 > nul
del *.bas > nul
copy *.abc %1%2 > nul
del *.abc > nul
copy *.bat %1%2 > nul
:installed
echo on
goto end
:error
echo on
type install.err
:end