home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT001.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1988-09-24  |  4KB  |  106 lines

  1. echo off                                                                        
  2. cls                                                                             
  3. echo ───────────────────────────────────────────────────────────────────────────
  4. echo       This program copies  ALT  Shareware onto your hard disk.  It 
  5. echo       will complete the following steps: 
  6. echo       *
  7. echo       * Create a directory \ALT.      
  8. echo       *
  9. echo       * Copy all files on the disk to the directory \ALT.
  10. echo       *
  11. echo       * The compressed files in ALT.ARC will be uncrunched with
  12. echo       * the command    ARKE  ALT
  13. echo       *
  14. echo       *
  15. if %1*==* goto BADDRIVE
  16. if %1==c: goto OK
  17. if %1==C: goto OK
  18. if %1==d: goto OK
  19. if %1==D: goto OK
  20. if %1==e: goto OK
  21. if %1==E: goto OK
  22. if %1==f: goto OK
  23. if %1==F: goto OK
  24. if %1==g: goto OK
  25. if %1==G: goto OK
  26. goto BADDRIVE     
  27. :OK               
  28. echo                      ALT WILL BE INSTALLED ON DRIVE %1  
  29. echo                      ─────────────────────────────────                  
  30. echo   NOTE: 600,000 bytes of free disk space are required to
  31. echo         load and use ALT.                                                
  32. echo    *
  33. echo    * If you do not wish to continue with the installation, press Ctrl-Break. 
  34. echo    *
  35. echo ───────────────────────────────────────────────────────────────────────────
  36. pause
  37. cls
  38. echo Checking for ALT in drive A:...
  39. :IE
  40. if exist A:ALT.ARC goto CONT1
  41. echo *
  42. echo * Please insert ALT Disk in drive A:
  43. echo *
  44. pause
  45. goto IE
  46. :CONT1
  47. cls
  48. echo Creating directory %1\ALT...      
  49. %1
  50. md \ALT     
  51. echo ─────────────────────────────────────────────────────────────────────────────
  52. echo Copying files to %1\ALT...     
  53. copy a:*.* %1\ALT
  54. %1
  55. cd %1\ALT
  56. echo Uncrunching ALT.ARC  ...      
  57. echo ─────────────────────────────────────────────────────────────────────────────
  58. ARKE ALT
  59. %1
  60. cd \
  61. :MAKE
  62. echo ─────────────────────────────────────────────────────────────────────────────
  63. echo ─────────────────────────────────────────────────────────────────────────────
  64. echo                                ALT 1.0                           
  65. echo . 
  66. echo                 Copyright (C) 1987 INSTINCT Software
  67. echo                     11311 N. Central Expy Suite 300
  68. echo                             Dallas, Texas 
  69. echo                                  75243    
  70. echo .
  71. echo        Order (214) 739-5543   BBS Support Line (214) 368-2709 
  72. echo . 
  73. echo      ALT is installed.  ALT can be started by going to the
  74. echo      \ALT directory and entering in  ALT, or from another
  75. echo      directory and entering in  ALT as long as ALT.EXE can
  76. echo      be found in the current PATH.  Be sure to read READ.ME
  77. echo      and the TUTORIAL files. 
  78. echo .     
  79. echo      Once  ALT is loaded into memory a VERY short tap on the ALT key
  80. echo      will bring up the  ALT main menu.
  81. echo .
  82. echo ─────────────────────────────────────────────────────────────────────────────
  83. pause
  84. cls
  85. echo ─────────────────────────────────────────────────────────────────────────────
  86. echo .
  87. echo      ALT will now be started.  If you do not want to execute
  88. echo      ALT, press  Ctrl-Break.
  89. echo .
  90. echo ─────────────────────────────────────────────────────────────────────────────
  91. pause
  92. %1
  93. CD \ALT
  94. ALT
  95. goto END
  96. :BADDRIVE
  97. echo ─────────────────────────────────────────────────────────────────────────────
  98. echo        ╔════════════════════════════════════════════════════════════╗
  99. echo        ║                                                            ║
  100. echo        ║   You must specify a hard disk drive, as in 'INSTALL C:'.  ║
  101. echo        ║         You may use drive C:, D:, E:, F:, or G:.           ║
  102. echo        ║                                                            ║
  103. echo        ╚════════════════════════════════════════════════════════════╝
  104. :END
  105.  
  106.