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