home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR14 / WCE150_3.ZIP / PATCH150.BAT < prev    next >
DOS Batch File  |  1994-01-03  |  2KB  |  66 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║       WcEDIT! patch for version 1.53 dated 12-30-93         ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to WcEDIT! version 1.50     ║
  6. echo ║ This patch will work ONLY on WcEDIT! version 1.50. The date ║
  7. echo ║ on the WCEDIT.EXE file in your WCEDIT directory should be   ║
  8. echo ║ 12/30/93.  If the date on these files is later than this,   ║
  9. echo ║ you not need this patch.                                    ║
  10. echo ║                                                             ║
  11. echo ║ Press any key to continue or Control-C to abort.            ║
  12. echo ╚═════════════════════════════════════════════════════════════╝
  13. pause
  14.  
  15. if not exist BUPDATE.EXE goto error
  16. if not exist 150-151.BDF goto error
  17. if not exist 151-153.BDF goto error
  18. if not exist WCEDIT.EXE  goto error
  19.  
  20. :WCE150-1
  21. ECHO Updating 1.50-1.51
  22. ::Do not modify the case of the next line
  23. bupdate 150-151.bdf wcedit.exe
  24. IF ERRORLEVEL 1 GOTO WCE151-3
  25. DEL WCEDIT.ORG>nul
  26. ECHO Updated 1.50-151 Successfull!
  27.  
  28. :WCE151-3
  29. ECHO Updating 1.51-1.53
  30. ::Do not modify the case of the next line
  31. bupdate 151-153.bdf wcedit.exe
  32. IF ERRORLEVEL 1 GOTO FAILED
  33. DEL WCEDIT.ORG>nul
  34. GOTO SUCCESS
  35.  
  36. :FAILED
  37. @ECHO Unable to update WCEDIT.EXE - Please contact the support system
  38. @ECHO at 504-796-5860(BBS) for an updated copy of WcEDIT!.
  39. GOTO END
  40.  
  41. :SUCCESS
  42. cls
  43. echo Patch complete! Now deleting patch files...
  44. del 150-151.bdf>nul
  45. del 151-153.bdf>nul
  46. del bupdate.exe>nul
  47. echo.
  48. echo Done!
  49.  
  50. PAUSE
  51. TYPE READ153.ME | MORE
  52. GOTO END
  53.  
  54. :ERROR
  55. echo ╔═════════════════════════════════════════════════════════════╗
  56. echo ║ This patch should be applied by copying BUPDATE.EXE         ║
  57. echo ║ 150-151.BDF, 151-153.BDF and PATCH150.BAT into your         ║
  58. echo ║ WCEDIT directory, and then typing:                          ║
  59. echo ║                                                             ║
  60. echo ║ PATCH150                                                    ║
  61. echo ║                                                             ║
  62. echo ╚═════════════════════════════════════════════════════════════╝
  63.  
  64. :END
  65.  
  66.