home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / statstcs / mystat.arc / M2.BAT < prev    next >
DOS Batch File  |  1987-02-15  |  3KB  |  86 lines

  1. if %1 == HARD goto hard
  2. if %1 == FLOPPY goto floppy
  3. goto end
  4. :floppy
  5. cls
  6. echo  
  7. echo  
  8. echo  
  9. ECHO ╔══════════════════════════════════════════════════════════╗
  10. echo ║                                                          ║
  11. echo ║    Remove original MYSTAT disk from floppy drive A:      ║
  12. echo ║    and insert formatted MYSTAT/WORK disk in drive A:     ║
  13. echo ║                                                          ║
  14. ECHO ╚══════════════════════════════════════════════════════════╝
  15. echo       
  16. echo      
  17. pause
  18. copy m3.bat a:
  19. copy config.sys a:
  20. copy mystat.def a:
  21. copy mystat.men a:
  22. copy mystat.hlp a:
  23. copy mystat.txt a:
  24. copy demo.cmd a:
  25. goto continue
  26. :hard
  27. if not exist c:\systat\mystar.exe goto trap
  28. rename mystar.exe mystat.exe
  29. if not exist c:\config.sys goto conf1
  30. copy c:\config.sys+c:\systat\config.sys c:\config.sys
  31. goto conf2
  32. :conf1
  33. copy c:\systat\config.sys c:\config.sys
  34. :conf2
  35. if not exist c:\config.sys goto trap
  36. :disk1
  37. cls
  38. echo        
  39. echo      
  40. echo     
  41. ECHO ╔══════════════════════════════════════════════════════════╗
  42. echo ║                                                          ║
  43. echo ║    Remove MYSTAT disk from floppy drive and insert DOS   ║
  44. echo ║    disk in drive                                         ║
  45. echo ║                                                          ║
  46. ECHO ╚══════════════════════════════════════════════════════════╝
  47. echo  
  48. pause
  49. ECHO  
  50. if exist a:ansi.sys goto dos
  51. echo   You did not put DOS disk in floppy drive.  It should be near your DOS manual.
  52. goto disk1
  53. :dos
  54. copy a:ansi.sys c:\ansi.sys
  55. if not exist c:\ansi.sys goto trap
  56. cls
  57. echo  MYSTAT is now installed on your hard disk.  Remove your DOS disk from the
  58. echo  floppy drive and reset your computer by pressing the Ctrl-Alt-Del keys at
  59. echo  the same time.  Then change your directory to \SYSTAT by typing:
  60. echo       
  61. echo           CD \SYSTAT
  62. echo    
  63. echo  then type:
  64. echo      
  65. echo           MYSTAT
  66. echo     
  67. echo  If you include the path statement PATH \SYSTAT in your AUTOEXEC.BAT file in
  68. echo  the root directory, you can use MYSTAT from any directory on your hard disk.
  69. echo  Once you see the MYSTAT menu, you should type:
  70. echo       
  71. echo           DEMO
  72. echo        
  73. echo  to see a demonstration of MYSTAT.  After that, the INTRO command will show 
  74. echo  you how to use all the commands in MYSTAT.  The HELP command will give you
  75. echo  detailed information on each command.  Before you reset your machine, you
  76. echo  should turn on your printer and press Shift-PrtSc simultaneously to get a 
  77. echo  printed copy of this screen.
  78. goto end
  79. :trap
  80. echo The installation has failed.  Check your disk and retry.
  81. goto end
  82. :continue
  83. a:
  84. M3
  85. :end
  86.