home *** CD-ROM | disk | FTP | other *** search
/ Games World (Happy Day Edition) / HAPPYDAY.ISO / happyday / kungfu / kl-----#.exe / lha / HINSTALL.BAT < prev    next >
DOS Batch File  |  1989-09-03  |  2KB  |  69 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.00, 07/30/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:\path  where `d:' is the hard drive letter (C-F only)
  17. echo                     and `\path' is  the  directory  path to create
  18. echo                     and place the program files in.
  19. echo.
  20. goto endbatch
  21. :install
  22. echo You are about to install this program in the drive and subdirectory
  23. echo labeled %1.
  24. echo.
  25. echo The  installation  will  also  create  a  subdirectory called CHARS
  26. echo within the path of %1\KUNGFU.
  27. echo.
  28. echo Make sure you have at least 1.2 million bytes free on your drive to
  29. echo install.  Abort now,  if so, or it may cause errors during install.
  30. echo.
  31. echo If you wish to abort this procedure, press  [CNTRL-C] to  abort the
  32. echo installation;  otherwise, strike any key when ready to continue....
  33. pause > nul
  34. echo.
  35. echo 1. Making subdirectories %1\KUNGFU and CHARS...
  36. md %1\kungfu
  37. md %1\kungfu\chars
  38. echo.
  39. echo 2. Copying contents of INTRO DISK...
  40. copy *.* %1\kungfu\*.* > nul
  41. :disk1
  42. echo.
  43. echo ------    Please remove: INTRO DISK
  44. echo ------ and replace with: GAME DISK ONE
  45. echo.
  46. pause
  47. if not exist level5.snd goto disk1
  48. echo.
  49. echo 3. Copying contents of GAME DISK ONE...
  50. copy *.* %1\kungfu\*.* > nul
  51. copy chars\*.* %1\kungfu\chars\*.* > nul
  52. :disk2
  53. echo.
  54. echo ------    Please remove: GAME DISK ONE
  55. echo ------ and replace with: GAME DISK TWO
  56. echo.
  57. pause
  58. if not exist level1.snd goto disk2
  59. echo.
  60. echo 4. Copying contents of GAME DISK TWO...
  61. copy *.* %1\kungfu\*.* > nul
  62. copy chars\*.* %1\kungfu\chars\*.* > nul
  63. echo.
  64. echo.
  65. echo HARD DISK INSTALLATION PROCEDURE COMPLETED.  If you noticed any errors
  66. echo during  the  installation,  please  remedy  immediately and reinstall.
  67. echo.
  68. :endbatch
  69.