home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 164.img / MTE.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-10-10  |  2.0 KB  |  82 lines

  1. echo off
  2.  
  3. if "%1" == "" goto def
  4. if "%1" == "go" goto go
  5. if exist MTE.EXE goto xinst
  6.  
  7. :def
  8. echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  9. echo :  
  10. echo :   You must be "logged" onto the MTE disk
  11. echo :   and specify which drive to install onto.
  12. echo :   For example, to install MTE into drive C:
  13. echo :   from drive A: Type:
  14. echo :  
  15. echo :       A:[cr]
  16. echo :  
  17. echo :   then
  18. echo :  
  19. echo :       INSTALL C:[CR]
  20. echo :  
  21. echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  22. echo :  
  23. goto end
  24.  
  25. :xinst
  26. if "%1" == "a:" goto app
  27. if "%1" == "A:" goto app
  28. if "%1" == "b:" goto app
  29. if "%1" == "B:" goto app
  30. if "%1" == "c:" goto app
  31. if "%1" == "C:" goto app
  32. if "%1" == "d:" goto app
  33. if "%1" == "D:" goto app
  34. if "%1" == "e:" goto app
  35. if "%1" == "E:" goto app
  36. if "%1" == "f:" goto app
  37. if "%1" == "F:" goto app
  38. if "%1" == "g:" goto app
  39. if "%1" == "G:" goto app
  40. if "%1" == "h:" goto app
  41. if "%1" == "H:" goto app
  42. goto def
  43.  
  44. :app
  45. echo Installing MTE into %1\MTE
  46. md %1\MTE >nul
  47. md %1\MTE\SEND >nul
  48. md %1\MTE\RECV >nul
  49.  
  50. copy *.* %1\MTE >nul
  51. %1
  52. cd %1\MTE
  53.  
  54. cls
  55. echo :  MTE is Now Installed onto %1\MTE
  56. echo :
  57. echo :
  58. echo :  If this is your 1st time running MTE...
  59. echo :
  60. echo :      1) Make sure that you select the proper MODEM SETUP string
  61. echo :         for your particular modem. (Press [Alt-S], cursor to
  62. echo :         "Modem Setup" and press [F2] to view a list of modems).
  63. echo :
  64. echo :      2) Select the proper COM Port. (Press [Alt-P] and press
  65. echo :         the SPACE BAR to toggle to the correct port).
  66. echo :
  67. echo :      3) Before dialing from the Dialing Directory, inform
  68. echo :         MTE of your "Area Code", "Local Dialing Prefix",
  69. echo :         if any (ex: "9,") and "Long Distance Prefix/Suffix"
  70. echo :         (ex: "9,1"). (Press [Alt-D], and press [O] for Options).
  71. echo :
  72. echo :  Also... Make sure to read "READ.ME" for additional notices.
  73. echo :
  74. echo :  Press ENTER to Start MTE or Ctrl-C to Cancel
  75. echo :
  76. pause
  77. install go
  78.  
  79. :go
  80. mte
  81. :end
  82.