home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT170.ZIP / GO.BAT < prev    next >
DOS Batch File  |  1991-03-29  |  2KB  |  88 lines

  1. echo off
  2. type go.doc
  3. pause
  4. echo .
  5. echo .
  6.  
  7. getyn Enter 'Y' (or 'y') if using hard drive.
  8. if errorlevel 1 goto hard
  9. echo ....
  10. getyn Enter 'Y' (or 'y') if using 5 inch; 'N' for 3 inch floppies.
  11. if errorlevel 1 goto flopF
  12. if not errorlevel 1 goto flopTH
  13.  
  14. :flopF
  15. echo .....
  16. echo Put a formatted floppy in the B: drive
  17. pause                 
  18. lqmtx43 /eB:
  19. echo ....
  20. echo Put a second formatted floppy in the B: drive
  21. pause
  22. echo unpacking the various nice fonts
  23. lqfont /eB: 
  24. echo copying the downloader [LQ.EXE] to B:
  25. copy lq.exe b:
  26. echo .....
  27. echo Put a third formatted disk in the B: drive. 
  28. pause 
  29. echo unpacking the Chamberlain fonts
  30. lqcrc /eB: 
  31. echo unpacking the Wisan fonts
  32. lqrnw /eB: 
  33. echo copying the downloader [LQ.EXE] to B:
  34. copy lq.exe b:
  35. echo unpacking the Hensel fonts
  36. lqreh /eB:/hensel 
  37. goto exit
  38.  
  39. :flopTH 
  40. echo ......
  41. echo Put a formatted 3 1/2 inch disk in the B: drive.
  42. pause 
  43. lqmtx43 /eB:
  44. echo......
  45. echo Put second formatted 3 1/2 inch disk in the B: drive.
  46. pause 
  47. echo copying the downloader [LQ.EXE] to B:
  48. copy lq.exe b:
  49. echo unpacking the various nice fonts
  50. lqfont /eB: 
  51. echo unpacking the Chamberlain fonts
  52. lqcrc /eB: 
  53. echo unpacking the Wisan fonts
  54. lqrnw /eB: 
  55. echo unpacking the Hensel fonts
  56. lqreh /eB:/hensel
  57.  
  58. goto exit
  59.  
  60. :hard
  61. echo .....
  62. lqmtx43 /eC:/LQMATRIX
  63. echo unpacking the various nice fonts
  64. lqfont /eC:/LQMATRIX 
  65. echo unpacking the Chamberlain fonts
  66. lqcrc /eC:/LQMATRIX 
  67. echo unpacking the Wisan fonts
  68. lqrnw /eC:/LQMATRIX 
  69. echo unpacking the Hensel fonts
  70. lqreh /eC:/LQMATRIX/hensel 
  71.  
  72. :exit
  73. cls
  74. echo .....
  75. echo .
  76. echo All done!
  77. echo .
  78. echo .
  79. echo To get a quick lesson on how to download a font put the first disk in the
  80. echo drive (if using a hard disk go to C:\LQMATRIX\) and enter at the prompt:
  81. echo    type QUICKIE.DOC      -- for a screen display or 
  82. echo    copy QUICKIE.DOC prn  -- for a print out. [Be sure printer is on].
  83. echo .
  84. echo .
  85. echo [Jimmy Paris Software .. trying to do better.]
  86.  
  87.  
  88.