home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 March / SOFM_Mar1995.bin / pc / kids / cff / install.bat < prev    next >
DOS Batch File  |  1995-01-27  |  1KB  |  32 lines

  1. @ECHO OFF
  2.  
  3. rem INSTALL C:
  4. rem Batch file to install College Funding Finder 4.3
  5.  
  6. CLS
  7. echo ╔═══════════════════════════════════════════════════════════════════════════╗
  8. echo ║                     College Funding Finder Version 4.3                    ║
  9. echo ╚═══════════════════════════════════════════════════════════════════════════╝
  10.  
  11. IF %1!==! GOTO OOPS
  12.  
  13. ECHO                  Installation in process. One moment please . . .
  14. mkdir %1\CFF > NUL
  15. COPY CFFSHR.EXE %1\CFF > NUL
  16. %1
  17. chdir \CFF
  18. CFFSHR.EXE > NUL
  19. ECHO                   College Funding Finder installation complete.
  20. ECHO                     Type CFF to run College Funding Finder.
  21. ECHO            If you are using DOS 6.0 with MEMMAKER installed you should
  22. ECHO         type CFF_DOS6 to run College Funding Finder, OR disable MEMMAKER.
  23. echo off
  24. GOTO END
  25.  
  26. :OOPS
  27. echo         You must specify a hard drive letter to install this program to.
  28. echo             FOR EXAMPLE: Type INSTALL C: to install to the C: drive.
  29. GOTO END
  30.  
  31. :END
  32.