home *** CD-ROM | disk | FTP | other *** search
/ Spiele Spiele Spiele 1 / spiele-spiele-spiele-topware.iso / spiele / top2051 / gepackt.exe / INSTALL.BAT next >
DOS Batch File  |  1992-10-07  |  712b  |  32 lines

  1. @echo off
  2. echo.
  3. echo PlayByte Installation Batch
  4. echo ----       UGH!/PC      ----
  5. echo.
  6. if "%2" == "" goto error1
  7. if not exist %1\ugh.exe goto error2
  8. if %1 == %2 goto error5
  9. md %2\ugh
  10. if not exist %2\ugh\nul goto error3
  11. copy %1\ugh.exe %2\ugh
  12. if not exist %2\ugh\ugh.exe goto error4
  13. echo Installation finished!
  14. goto exit
  15. :error1
  16. echo INSTALL <source-drive> <target-drive>
  17. echo z.B. INSTALL A: C:
  18. goto exit
  19. :error2
  20. echo Drive %1 is not an UGH!-source-drive !
  21. goto exit
  22. :error3
  23. echo Directory UGH could not be created on drive %2 !
  24. goto exit
  25. :error4
  26. echo ugh.exe could not be copied to %2\ugh\ !
  27. goto exit
  28. :error5
  29. echo Installation on source-drive is not allowed !
  30. :exit
  31. echo.
  32. pause