home *** CD-ROM | disk | FTP | other *** search
/ Unprotect 6 / Unprotect-6.0.iso / update / lompatch / patch.bat < prev    next >
Encoding:
DOS Batch File  |  1995-08-16  |  426 b   |  30 lines

  1. @echo off
  2. if "%1" == "" goto usage 
  3. goto update
  4.  
  5. :usage
  6. echo -
  7. echo ERROR USAGE
  8. echo -
  9. echo    PATCH (Where LOM is)
  10. echo ie PATCH C:\LOM3
  11. echo -           
  12. goto end
  13.  
  14. :update
  15. echo Updating Files
  16. xcopy *.* /e/s %1
  17. echo Deleting SaveGames
  18. deltree /Y %1\black
  19. deltree /Y %1\red 
  20. deltree /Y %1\yellow
  21. deltree /Y %1\green 
  22. deltree /Y %1\blue 
  23. deltree /Y %1\white 
  24. cd %1
  25. cls
  26. echo ALL DONE
  27. goto end
  28. :end
  29.  
  30.