home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / mte215.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-08-03  |  1KB  |  67 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. goto end
  23.  
  24. :xinst
  25. if "%1" == "a:" goto app
  26. if "%1" == "A:" goto app
  27. if "%1" == "b:" goto app
  28. if "%1" == "B:" goto app
  29. if "%1" == "c:" goto app
  30. if "%1" == "C:" goto app
  31. if "%1" == "d:" goto app
  32. if "%1" == "D:" goto app
  33. if "%1" == "e:" goto app
  34. if "%1" == "E:" goto app
  35. if "%1" == "f:" goto app
  36. if "%1" == "F:" goto app
  37. if "%1" == "g:" goto app
  38. if "%1" == "G:" goto app
  39. if "%1" == "h:" goto app
  40. if "%1" == "H:" goto app
  41. goto def
  42.  
  43. :app
  44. echo Installing MTE into %1\MTE
  45. md %1\MTE >nul
  46. md %1\MTE\SEND >nul
  47. md %1\MTE\RECV >nul
  48.  
  49. copy *.* %1\MTE >nul
  50. %1
  51. cd %1\MTE
  52.  
  53. echo .
  54. echo .
  55. echo MTE is Now Installed in %1\MTE
  56. echo .
  57. echo TYPE READ.ME (at the DOS Prompt) for the latest MTE updates
  58. echo and features too new to be included in the MTE Users Manual.
  59. echo .
  60. echo Press ENTER to Start MTE or Ctrl-C to Cancel
  61. echo .
  62. pause
  63. install go
  64. :go
  65. mte
  66. :end
  67.