home *** CD-ROM | disk | FTP | other *** search
/ Amiga Computing 105 / ac105a.adf / SetUp-HD < prev    next >
Text File  |  1996-08-28  |  878b  |  49 lines

  1. failat 21
  2. assign >NIL: tmp: ""
  3. echo ""
  4. echo "This will install the Lzx and Installer programs into your"
  5. echo "hard drive's C directory, if these programs already"
  6. echo "exist they will NOT be overwritten."
  7. echo ""
  8. echo "You HAVE to boot your machine from the hard drive"
  9. echo "for this script to work."
  10. echo ""
  11.  
  12. ask "Do you wish to continue? (y)es/(N)o"
  13.  
  14. if NOT WARN
  15. Endcli >NIL:
  16. endif
  17.  
  18. echo ""
  19.  
  20. cd sys:
  21. which installer >NIL:
  22. if warn
  23.   echo "copying installer"
  24.   cd tmp:
  25.   copy :c/installer c:
  26.     else
  27.   echo "Installer already exists, skipping."
  28. endif
  29.  
  30. cd sys:
  31. which lzx >NIL:
  32. if warn
  33.   echo "copying lzx"
  34.   cd tmp:
  35.   copy :c/lzx c:
  36.     else
  37.   echo "Lzx already exists, skipping."
  38. endif
  39.  
  40. echo ""
  41. echo ""
  42. echo "All done"
  43. assign >NIL: tmp: remove
  44.  
  45. Endcli >NIL:
  46.  
  47. ; $VER: AC_Begginers_Installer v1 (9:18am 13-Mar-1996)
  48. ; Installs Lzx and Installer using IconX >:-\. by Neil Mohr
  49.