home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / mx136.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1986-07-01  |  3KB  |  103 lines

  1. echo off
  2. cls
  3. if %1x==x goto NODRIVE
  4. echo All disk drive designations must end with colons.  For instance, drive C is
  5. echo designated as "C:", not "C".  Make absolutely sure that you have designated
  6. echo your hard disk correctly.
  7. echo .    
  8. echo .
  9. echo If your hard disk is NOT "%1", then press Control-C to abort; otherwise,
  10. pause
  11. echo .    
  12. echo .
  13. if %1==b goto COLON    
  14. if %1==B goto COLON    
  15. if %1==c goto COLON    
  16. if %1==C goto COLON    
  17. if %1==d goto COLON    
  18. if %1==D goto COLON    
  19. if %1==e goto COLON    
  20. if %1==E goto COLON    
  21. if %1==f goto COLON    
  22. if %1==F goto COLON    
  23. cls
  24. echo Creating MANAGEX directory and copying files...
  25. %1
  26. cd\
  27. md MANAGEX
  28. cd\MANAGEX
  29. copy a:*.* /v
  30. echo off
  31. cls
  32. echo The instructions will now be printed.
  33. echo .
  34. echo .
  35. echo Please turn your printer OFF and then ON.  Make sure that it is ready to print
  36. echo and that you have loaded at least 50 sheets of paper.  Then, align the print
  37. echo head 1/2" below the top of the first sheet.
  38. echo .
  39. pause
  40. cls
  41. echo Printing documentation...
  42. type REGISTER.FRM >prn
  43. type README.DOC >prn
  44. type MANAGEX.DOC >prn
  45. cls
  46. echo The documentation has been printed.
  47. echo .
  48. pause
  49. echo off
  50. cls
  51. echo ManageX is now installed on your hard disk in the MANAGEX directory.  To
  52. echo access the program, do the following:
  53. echo .  
  54. echo     1) enter "%1" at the prompt (this logs you onto drive %1);
  55. echo     2) enter "CD\MANAGEX" at the prompt ("CD" means "Change Dirctory"); and
  56. echo     3) enter "MX" at the prompt.
  57. echo .   
  58. echo .  
  59. echo Also, remember to go through the instructions, step by step. Don't skip ANYTHING.
  60. echo .
  61. echo .
  62. pause
  63. cls
  64. echo At your earliest convenience, copy the BACKUP and RESTORE utilities (from
  65. echo the DOS diskette that came with your computer) to the MANAGEX directory, or
  66. echo make sure that those two utilities are in your computer's "PATH".  ManageX
  67. echo needs them for creating and restoring archive files.
  68. echo .
  69. echo .
  70. echo Now, let's get started.
  71. echo .   
  72. echo .    
  73. echo You are about to enter the ManageX program.  The only things you need do at
  74. echo this time are to enter the correct date (when asked), go through the custom-
  75. echo izing routine described in SECTION 1 of the documentation, and open files
  76. echo for the current month.  Feel free to play around, but don't use the program 
  77. echo "for real" until you have read the entire documentation.  
  78. echo .     
  79. echo .    
  80. echo Good luck.
  81. echo .
  82. echo .
  83. pause
  84. mx
  85. :NODRIVE
  86. cls
  87. echo .  
  88. echo            YOU MUST DESIGNATE THE DRIVE ONTO WHICH MANAGEX IS TO BE INSTALLED
  89. echo .  
  90. echo            examples:   A:INSTALL C:   will install ManageX on drive c:
  91. echo                        A:INSTALL D:   will install ManageX on drive d:
  92. echo .   
  93. echo            PLEASE TRY AGAIN
  94. echo .
  95. goto END
  96. :COLON
  97. cls
  98. echo .
  99. echo        YOU MUST PLACE A COLON AFTER THE DRIVE LETTER DESIGNATION (%1:)
  100. echo .
  101. echo        PLEASE TRY AGAIN
  102. echo .
  103. :END