home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / tech / edrw32 / hdinstal.bat < prev    next >
DOS Batch File  |  1987-09-06  |  1KB  |  67 lines

  1. cls
  2. REM This batch program installs EDRAW from floppy A onto a specified hard
  3. REM disk drive.  If this is not what you want, then depress CTRL Break at
  4. REM this time.
  5. pause
  6. echo off
  7. cls
  8. if not "1DIR"=="%11DIR" goto cont
  9. echo You must enter the destination drive letter
  10. echo i.e. INSTALL x where x = the destination drive
  11. goto exit
  12. :cont
  13.  
  14. if not exist RESIS1.DOG GOTO BAD
  15.  
  16. A:
  17. CD \
  18. %1:
  19. cd \
  20. md edraw
  21. COPY A:FIXD.CFG %1:EDRAW.CFG
  22. cd \edraw
  23.  
  24. A:
  25. COPY A:EDRAW.EXE %1:
  26. COPY A:DEMO1 %1:DEMO1.COM
  27. COPY A:DEMO2 %1:DEMO2.COM
  28. COPY A:DEMO3 %1:DEMO3.COM
  29. COPY A:ED*.BAT %1:
  30. COPY A:README %1:
  31. COPY A:EDRAW.CFG %1:
  32.  
  33. COPY A:FIXD.CFG %1:EDRAW.CFG
  34.  
  35. %1:
  36. cd \edraw
  37. md GATES
  38. cd \EDRAW\GATES
  39. COPY A:*.DOG %1:*.SYM
  40.  
  41. %1:
  42. cd \edraw
  43. md FONT1
  44. cd \EDRAW\FONT1
  45. COPY A:FONTK1 %1:FONT.KEY
  46. COPY A:FONTB1 %1:FONT.BTS
  47. COPY A:FONTF1 %1:FONT1.FNT
  48.  
  49. %1:
  50. CD \EDRAW
  51. md FONT5
  52. cd \EDRAW\FONT5
  53. COPY A:FONTK5 %1:FONT.KEY
  54. COPY A:FONTB5 %1:FONT.BTS
  55. COPY A:FONTF5 %1:FONT1.FNT
  56. cd \
  57. A:
  58. CD \
  59. GOTO EXIT
  60.  
  61. :BAD
  62. ECHO This is not original EDRAW distribution disk. Batch aborted
  63.  
  64. :exit
  65.  
  66.  
  67.