home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1" == "" goto error
- if exist %1%2\v11beta.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 readme.txt %1%2 > nul
- del readme.txt > nul
- copy windows.txt %1%2 > nul
- del windows.txt > nul
- copy summary.txt %1%2 > nul
- del summary.txt > nul
- copy register.txt %1%2 > nul
- del register.txt > nul
- copy intro.txt %1%2 > nul
- del intro.txt > nul
- copy overview.txt %1%2 > nul
- del overview.txt > nul
- copy guide.txt %1%2 > nul
- del guide.txt > nul
- copy details.txt %1%2 > nul
- del details.txt > nul
- copy lbasic.ini %1%2 > nul
- del lbasic.ini > nul
- copy libertyb.grp %1%2 > nul
- del libertyb.grp > nul
- copy v11beta.txt %1%2 > nul
- del v11beta.txt > nul
- copy *.bas %1%2 > nul
- del *.bas > nul
- copy *.abc %1%2 > nul
- del *.abc > nul
- copy *.bmp %1%2 > nul
- del *.bmp > nul
- copy *.bat %1%2 > nul
- :installed
- echo on
- goto end
- :error
- echo on
- type install.err
- :end
-