home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / r / rj502.zip / INSTHARD.BAT < prev    next >
DOS Batch File  |  1993-03-06  |  1KB  |  33 lines

  1. @ECHO OFF
  2. echo
  3. echo                    ============================================
  4. ECHO                    Hard Drive Installation for Rosewood Journal
  5. echo                    ============================================
  6. echo
  7. ECHO                    This program will make a directory called
  8. echo                    "C:\ROSEJOUR" and a sub-directory called
  9. ECHO                    "C:\ROSEJOUR\DATA". The program will copy
  10. echo                    the executable file "RJ.EXE" to the "ROSEJOUR" 
  11. echo                    directory and then will run Rosewood Journal.
  12. @echo
  13. echo                    You will be asked to enter details of your company
  14. echo                    including the month that your fiscal year begins
  15. echo                    and the drive and path to your data. Your data will
  16. echo                    be in the "C:\ROSEJOUR\DATA" directory. You will need
  17. echo                    to know this path when you complete the installation.
  18. echo                    
  19. @echo off
  20. echo                    If you do not want to continue with the installation
  21. echo                    then press Ctrl-Break or Ctrl-C now.
  22. echo
  23. echo   
  24. pause
  25. MD C:\ROSEJOUR
  26. MD C:\ROSEJOUR\DATA
  27. COPY RJ.EXE C:\ROSEJOUR
  28. C:
  29. CD \ROSEJOUR
  30. echo                    Installation is complete
  31. pause
  32. RJ
  33.