home *** CD-ROM | disk | FTP | other *** search
/ Unprotect 6 / Unprotect-6.0.iso / update / h2dpatch / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-06-12  |  783 b   |  38 lines

  1. @echo off
  2.  
  3. if "%1" == "" goto USAGE
  4. if "%2" == "" goto USAGE
  5. if not exist %1:\%2\harpoon2.exe goto NOEXE
  6.  
  7. xcopy h2dpatch.* %1:\%2 /v
  8. xcopy annex.rtp %1:\%2 /v
  9. xcopy annexwp.rtp %1:\%2 /v
  10. xcopy cwpatch.rtp %1:\%2 /v
  11. copy patch.exe %1:\%2 /v
  12. cd %1:\%2
  13. %1:
  14. h2dpatch
  15. del h2dpatch.*
  16. del annex.rtp
  17. del annexwp.rtp
  18. del cwpatch.rtp
  19. del patch.exe
  20.  
  21. goto END
  22.  
  23. :USAGE
  24.  
  25. echo Usage : install drive dir 
  26. echo         where drive is the letter of the drive to which Harpoon II
  27. echo         was installed and dir is the drive:path into which 
  28. echo         Harpoon II was installed
  29. echo         example : if Harpoon II was installed to C:\GAMES\HARPOON2 type
  30. echo                   install C GAMES\HARPOON2
  31.  
  32. goto END
  33.  
  34. :NOEXE
  35. echo  Harpoon II not found in %1
  36.  
  37. :END
  38.