home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / SAMPLE05.ZIP / VW128FIX.BAT < prev    next >
DOS Batch File  |  1983-07-24  |  2KB  |  46 lines

  1. rem             This batch file will only work under DOS 2.0
  2. echo off
  3. cls
  4. echo        ╔══════════════════════════════════════════════════════════╗
  5. echo        ║                      VW 128 FIX                          ║
  6. echo        ║                   by David Whitman                       ║
  7. echo        ╠══════════════════════════════════════════════════════════╣
  8. echo        ║                                                          ║
  9. echo        ║       Modifys the 128K version of Volkswriter 1.2        ║
  10. echo        ║       to skip the time consuming title page.             ║
  11. echo        ║                                                          ║
  12. echo        ║       This disk should contain the following files:      ║
  13. echo        ║                                                          ║
  14. echo        ║          VW128FIX.BAT      (this file)                   ║
  15. echo        ║          VW128FIX.INS      (instructions for DEBUG)      ║
  16. echo        ║          DEBUG.COM         (from your DOS disk)          ║
  17. echo        ║          VW.EXE            (Volkswriter program)         ║
  18. echo        ║                                                          ║
  19. echo        ╠══════════════════════════════════════════════════════════╣
  20. echo        ║      The copy of Volkswriter on this disk will be        ║
  21. echo        ║      PERMANENTLY modified to eliminate the opening       ║
  22. echo        ║      fireworks display.  If you wish to abort this       ║
  23. echo        ║      process at this time, press Control Break, then     ║
  24. echo        ║      answer "Y" to the prompt.                           ║
  25. echo        ╚══════════════════════════════════════════════════════════╝
  26. pause
  27. if exist vw128fix.ins goto a
  28.    echo Missing file: VW128FIX.INS
  29.    goto abort
  30. :a
  31. if exist debug.com goto b
  32.    echo Missing file: DEBUG.COM
  33.    goto abort
  34. :b
  35. if exist vw.exe goto c
  36.    echo Missing file: VW.EXE
  37.    goto abort
  38. :c
  39. rem Everything looks ok, so do it...
  40.     rename vw.exe vw.bug
  41.     <vw128fix.ins debug vw.bug
  42.     rename vw.bug vw.exe
  43. rem done!
  44. echo        ════════════════════MODIFICATION COMPLETED══════════════════
  45. :abort
  46.