home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / CT / CT9410 / FEDIT / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-10-18  |  1KB  |  43 lines

  1. @echo off
  2. if not "%1"=="" goto Install0
  3. cls
  4. echo          Merlin's Deluxe Font Editor
  5. echo          Installation procedure
  6. echo.
  7. echo          Option to install FEDIT to:
  8. echo          A         A: (distribution disk, 300k free needed)
  9. echo          B         B: (distribution disk, 300k free needed)
  10. echo          C         C:\FEDIT
  11. echo          D         D:\FEDIT
  12. echo          E         E:\FEDIT
  13. echo          Q         Quit installation procedure
  14. echo.
  15. ask "Please enter the letter of your choice: ", abcdeq
  16. if errorlevel 6 goto end
  17. if errorlevel 5 Install e:
  18. if errorlevel 4 Install d:
  19. if errorlevel 3 Install c:
  20. if errorlevel 2 Install b:
  21. if errorlevel 1 Install a:
  22. goto end
  23.  
  24. :Install0
  25. if "%1"=="a:" goto Install1
  26. if "%1"=="b:" goto Install1
  27. echo Creating directory ...
  28. md %1\fedit >nul
  29. echo Copying files for you ...
  30. xcopy *.* %1\fedit
  31. %1
  32. cd \fedit
  33. :Install1
  34. echo Unpacking files for you ...
  35. pkunzip *.zip
  36. del *.zip
  37. echo Installation is complete.
  38. echo Starting FEDIT for you ...
  39. FEDIT
  40. :end
  41.  
  42.  
  43.