home *** CD-ROM | disk | FTP | other *** search
/ Program Metropolis - Software Boutique 95 / SOFTWARECD.iso / ms / disk3 / install.dat < prev    next >
Encoding:
INSTALL Professional project  |  1993-05-18  |  2.9 KB  |  143 lines

  1. @DefineProject
  2.   @Name         = "MetaStock Utilities"
  3.   @Version      = "3.03"
  4.   @Subdir       = "\\MS"
  5.   @OutDrive     = C
  6.   @REQUIRES     360000
  7.   @REQUIRES     @HARDDISK
  8. @EndProject
  9.  
  10. @Welcome
  11.     @CLS
  12.  
  13.      ╒════════════════════════════════════════════════════════════════╕
  14.      │                 (C) 1993 EQUIS International                   │
  15.      ╘════════════════════════════════════════════════════════════════╛
  16.  
  17.      This program will install @NAME version @VERSION on your 
  18.      hard disk.
  19.  
  20.      This program will not modify your AUTOEXEC.BAT or CONFIG.SYS files.
  21.  
  22.      You may press the [Esc] key at any time to abort the installation
  23.      process.
  24.  
  25.  
  26.     @PAUSE
  27. @EndWelcome
  28.  
  29. @WELCOME
  30.   @IF(@OSMAJOR < 2)
  31.     @CLS
  32.  
  33.     @NAME requires DOS version 2.0 or greater.  You are using version
  34.     @OSMAJOR.@OSMINOR.
  35.  
  36.     @PAUSE
  37.     @ABORT
  38.   @ENDIF
  39.  
  40.   @IF(@VIDEOCARD == 'M')
  41.     @CLS
  42.  
  43.     @NAME requires CGA, EGA or VGA video hardware.  Your computer
  44.     reports that it is equipped with a monochrome adapter (MDA).
  45.  
  46.     This installation process will continue, however, you may not be
  47.     able to run @NAME.
  48.  
  49.     Refer to "System Requirements" in the @NAME User's Manual for
  50.     additional information.
  51.  
  52.     @PAUSE
  53.   @ELSEIF(@VIDEOCARD != 'C')
  54.     @if(@VIDEORAM < 256)
  55.       @CLS
  56.  
  57.       @NAME requires that your EGA and VGA video hardware contains 256k of
  58.       graphic memory.  Your computer reports that it contains one of these
  59.       adapters which is equipped with less than 256k.
  60.  
  61.       This installation process will continue, however, you may not be
  62.       able to run @NAME.
  63.  
  64.       Refer to "System Requirements" in the @NAME User's Manual for
  65.       additional information.
  66.  
  67.       @PAUSE
  68.     @ENDIF
  69.   @ENDIF
  70. @ENDWELCOME
  71.  
  72. @GetOutDrive
  73.   @CLS
  74.  
  75.     Select the disk drive you want to install @NAME on.
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.     Use the [Up]/[Down] keys to select the disk drive and press [ENTER].
  90.  
  91. @EndOutDrive
  92.  
  93. @GetSubdir
  94.   @CLS
  95.  
  96.      Now you need to specify the subdirectory where @NAME
  97.      should be installed.
  98.  
  99.      We suggest that you simply press [ENTER] to install the program in the 
  100.      default subdirectory named below.
  101.  
  102.   @PROMPT = "Install in which subdirectory?"
  103. @EndSubdir
  104.  
  105. @DefineDisk
  106.  
  107.   @LABEL = "PROGRAM DISK"
  108.  
  109.   @File README.BAT    
  110.   @File README.TXT
  111.   @File SHOW.EXE 
  112.  
  113.   @BeginLib MSU.RED
  114.       @File ASCII.PRN 
  115.       @File CHKMEM.EXE 
  116.       @File CHKCOM.EXE 
  117.       @File MSU.EXE 
  118.   @EndLib
  119.  
  120. @EndDisk
  121.  
  122.  
  123. @Finish
  124.   @CLS
  125.  
  126.   The "README" file is about to be displayed on your screen.  You can view
  127.   the contents of the README file using the [Up]/[Down] keys.  When you are
  128.   done viewing the file, press [Esc] to return to this installation program.
  129.  
  130.   @PAUSE
  131.  
  132.   @ChDrive @InDrive
  133.  
  134.   @SYSTEM "SHOW README.TXT"
  135.  
  136.   @ChDrive @OutDrive
  137.   @ChDir "@Subdir"
  138.  
  139.   @CLS
  140.  
  141. @EndFinish
  142. 
  143.