home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / GA / GA110B.ZIP / HINSTALL.BAT < prev    next >
DOS Batch File  |  1990-04-21  |  2KB  |  64 lines

  1. echo off
  2. cls
  3. echo KUNG FU LOUIE VS. THE MARTIAL ART POSSE
  4. echo ---------------------------------------
  5. echo            1989  R. Salgado
  6. echo.
  7. echo     HARD DISK INSTALLATION PROGRAM.
  8. echo         version 1.20, 08/06/89
  9. echo       created by Raphael Salgado
  10. echo.
  11. if #%1 == # goto noparam
  12. goto install
  13. :noparam
  14. echo Sorry!  To run this program, use the parameter format below:
  15. echo.
  16. echo   HINSTALL d:  where `d:' is the hard drive letter (C-F only)
  17. echo.
  18. goto endbatch
  19. :install
  20. echo You are about to install this program in the drive and subdirectory
  21. echo labeled %1.
  22. echo.
  23. echo The  installation  will  also  create  a  subdirectory called CHARS 
  24. echo within the path of %1\KUNGFU.
  25. echo.
  26. echo Make sure you have at least 1.2 million bytes free on your drive to
  27. echo install.  Abort now,  if so, or it may cause errors during install.
  28. echo.
  29. echo If you wish to abort this procedure, press  [CNTRL-C] to  abort the
  30. echo installation;  otherwise, strike any key when ready to continue....
  31. pause > nul
  32. echo.
  33. echo 1. Making subdirectories %1\KUNGFU and CHARS...
  34. md %1\kungfu
  35. md %1\kungfu\chars
  36. echo.
  37. echo 2. Copying contents of INTRO DISK...
  38. copy *.* %1\kungfu\*.* > nul
  39. :disk1
  40. echo.
  41. echo ------    Please remove: INTRO DISK
  42. echo ------ and replace with: GAME DISK ONE
  43. echo.
  44. pause
  45. echo.
  46. echo 3. Copying contents of GAME DISK ONE...
  47. copy A:*.* %1\kungfu\*.* > nul
  48. :disk2
  49. echo.
  50. echo ------    Please remove: GAME DISK ONE
  51. echo ------ and replace with: GAME DISK TWO
  52. echo.
  53. pause
  54. echo.
  55. echo 4. Copying contents of GAME DISK TWO...
  56. copy A:*.* %1\kungfu\*.* > nul
  57. copy A:\chars\*.* %1\kungfu\chars\*.* > nul
  58. echo.
  59. echo.
  60. echo HARD DISK INSTALLATION PROCEDURE COMPLETED.  If you noticed any errors
  61. echo during  the  installation,  please  remedy  immediately and reinstall.
  62. echo.
  63. :endbatch
  64.