home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / BF / BF162.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-07-11  |  1KB  |  66 lines

  1. ECHO OFF
  2. CLS
  3. ECHO  
  4. ECHO  
  5. ECHO  
  6. ECHO   This procedure installs REMEMBER on your C: hard drive.
  7. ECHO       It puts a CONFIG.SYS file in your root directory (if you
  8. ECHO       already have CONFIG.SYS, it will not be changed, but check
  9. ECHO       it for minimum values of FILES=20 and BUFFERS=16).
  10. ECHO  
  11. ECHO   The procedure creates a sub-directory called \REMEM, then it
  12. ECHO       copies the REMEMBER program to that new sub-directory.
  13. ECHO  
  14. ECHO  
  15. ECHO  
  16. ECHO   If this is NOT what you want to do, hold down the Ctrl key and
  17. ECHO       press C, and then reply Y.
  18. ECHO  
  19. ECHO  
  20. ECHO       Otherwise, to proceed with the installation:
  21. ECHO  
  22. PAUSE
  23. CLS
  24. ECHO  
  25. ECHO  
  26. C:    
  27. CD\   
  28. IF EXIST CONFIG.SYS GOTO SKIP1
  29. ECHO   Installing new CONFIG.SYS file...
  30. ECHO  
  31. ECHO  
  32. COPY A:CONFIG.SYS
  33. :SKIP1
  34. IF EXIST REMEM.BAT GOTO SKIP2
  35. ECHO  
  36. ECHO  
  37. ECHO   Installing new REMEM.BAT file...
  38. ECHO  
  39. ECHO  
  40. COPY A:REMEM.BAT
  41. :SKIP2
  42. ECHO  
  43. ECHO  
  44. ECHO   Creating \REMEM sub-directory...
  45. ECHO  
  46. ECHO  
  47. MD \REMEM
  48. CD \REMEM
  49. ECHO   Copying files to new \REMEM sub-directory...
  50. COPY A:*.*
  51. ERASE REMEM.BAT
  52. CLS
  53. ECHO  
  54. ECHO  
  55. ECHO   The INSTALL is now complete.
  56. ECHO  
  57. ECHO  
  58. ECHO   If you did NOT have a CONFIG.SYS file then re-boot your computer
  59. ECHO   (just this once) by pressing the Ctrl, Alt, and Del keys at the
  60. ECHO   same time (this loads CONFIG.SYS into DOS).
  61. ECHO  
  62. ECHO   After the "re-boot" type REMEM and press ENTER.
  63. ECHO  
  64. ECHO  
  65. ECHO ON
  66.