home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / batch / mxmnu233.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-06-24  |  2KB  |  93 lines

  1. Echo OFF
  2. Cls
  3. Echo *======[[ Computer Tyme Software Installation ]]========*
  4. Echo .
  5. Echo If you are installing MarxMenu ......
  6. Echo .
  7. Echo This program will unpack the compressed files and compile
  8. Echo the menus. Then MarxMenu will create the MARX.BAT file for
  9. Echo your system.
  10. Echo .
  11. Echo *===============[[ I M P O R T A N T ! ]]===============*
  12. Echo .
  13. Echo You should be running this on your hard disk or network
  14. Echo If you're not, copy the files onto your hard disk or network
  15. Echo and run INSTALL from there.
  16. Echo .
  17. Echo Be sure to copy ALL the disks that came with your software
  18. Echo your hard disk or network before running INSTALL.
  19. Echo .
  20. Echo *===============[[ I M P O R T A N T ! ]]===============*
  21. Echo .
  22. Echo If you are running this on a floppy disk, press CTRL-C now!
  23. Echo .
  24. Pause
  25.  
  26. if not exist NSK.EXE goto skip
  27. Cls
  28. Echo Unpacking Network Survival Kit . . .
  29. NSK -o
  30. if ErrorLevel 1 goto Err
  31. DEL NSK.EXE
  32.  
  33. :skip
  34. if not exist NSKEVAL.EXE goto skip1
  35. Cls
  36. Echo Unpacking Network Survival Kit Evaluation . . .
  37. NSKEVAL -o
  38. if ErrorLevel 1 goto Err
  39. DEL NSKEVAL.EXE
  40.  
  41. :skip1
  42. if not exist SMARX.EXE goto skip3
  43. Cls
  44. Echo UnPacking MarxMenu Files . . .
  45. SMarx -o
  46. if ErrorLevel 1 goto Err
  47. DEL SMARX.EXE
  48.  
  49. :skip3
  50. if not exist DISK2.EXE goto skip4
  51. Cls
  52. Echo Unpacking MarxEdit and TSR Utilities . . .
  53. Disk2 -o
  54. if ErrorLevel 1 goto Err
  55. DEL DISK2.EXE
  56.  
  57. :skip4
  58. if not exist TOOLBOX.EXE goto skip5
  59. Cls
  60. Echo Unpacking Dos ToolBox . . .
  61. ToolBox -o
  62. if ErrorLevel 1 goto Err
  63. DEL TOOLBOX.EXE
  64.  
  65. :skip5
  66. if not exist INST.MNU goto skip6
  67. Cls
  68. Echo Compiling Menus . . .
  69. for %%m in (*.mnu) do MarxComp %%m
  70. Cls
  71. Echo Loading Installation Menu . . .
  72. MARXMENU INST
  73.  
  74. :skip6
  75. if exist PIPEDIR.EXE copy PIPEDIR.EXE WHEREIS.EXE >nul
  76. cls
  77. echo All Done!
  78. goto end
  79.  
  80. :Err
  81. cls
  82. echo An error occurred while installing the software!
  83. echo .
  84. echo The most common error is trying to run INSTALL from a floppy
  85. echo disk drive. The correct procedure is to copy all the enclosed
  86. echo disks onto your hard disk or network and then run install.
  87. echo .
  88. echo If you still have a problem call Computer Tyme tech support
  89. echo at 1-417-866-1222.
  90. echo .
  91.  
  92. :end
  93.