home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / libbasic / inst.bat < prev    next >
DOS Batch File  |  1994-04-23  |  1KB  |  49 lines

  1. @echo off
  2. if "%1" == "" goto error
  3. if exist %1%2\v11beta.txt goto installed
  4. md %1%2 > nul
  5. copy liberty.exe %1%2 > nul
  6. del liberty.exe > nul
  7. copy vw????.dll %1%2 > nul
  8. del vw????.dll > nul
  9. copy vw?????.dll %1%2 > nul
  10. del vw?????.dll > nul
  11. copy vw*.dll %1%2 > nul
  12. del vw*.dll > nul
  13. copy readme.txt %1%2 > nul
  14. del readme.txt > nul
  15. copy windows.txt %1%2 > nul
  16. del windows.txt > nul
  17. copy summary.txt %1%2 > nul
  18. del summary.txt > nul
  19. copy register.txt %1%2 > nul
  20. del register.txt > nul
  21. copy intro.txt %1%2 > nul
  22. del intro.txt > nul
  23. copy overview.txt %1%2 > nul
  24. del overview.txt > nul
  25. copy guide.txt %1%2 > nul
  26. del guide.txt > nul
  27. copy details.txt %1%2 > nul
  28. del details.txt > nul
  29. copy lbasic.ini %1%2 > nul
  30. del lbasic.ini > nul
  31. copy libertyb.grp %1%2 > nul
  32. del libertyb.grp > nul
  33. copy v11beta.txt %1%2 > nul
  34. del v11beta.txt > nul
  35. copy *.bas %1%2 > nul
  36. del *.bas > nul
  37. copy *.abc %1%2 > nul
  38. del *.abc > nul
  39. copy *.bmp %1%2 > nul
  40. del *.bmp > nul
  41. copy *.bat %1%2 > nul
  42. :installed
  43. echo on
  44. goto end
  45. :error
  46. echo on
  47. type install.err
  48. :end
  49.