home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 11 / 1995-10_Disc_11.iso / prage / install.bat < prev    next >
DOS Batch File  |  1995-07-13  |  2KB  |  76 lines

  1. @echo off
  2. cls
  3. echo                Primal Rage Demo Installation
  4. echo                -----------------------------
  5. echo    Would you like to:
  6. echo    A) Install all files to your hard drive (approx 20Mb)
  7. echo    B) Install only necessary files to your hard drive (approx 2Mb)
  8. echo or Q) Quit the installation.
  9. Choose
  10. IF ERRORLEVEL 3 GOTO quit
  11. IF ERRORLEVEL 2 GOTO partial
  12. IF ERRORLEVEL 1 GOTO full
  13.  
  14. :quit
  15. echo Aborting installation
  16. GOTO end
  17.  
  18. :partial
  19. echo Partial installation selected
  20. IF NOT EXIST c:\prage.cd\CMOS GOTO partcopy
  21. echo Warning! Primal Rage already exists on your hard drive,
  22. echo and will be overwritten.
  23. del c:\prage.cd\*.*
  24. IF ERRORLEVEL 1 GOTO quit
  25.  
  26. :partcopy
  27. mkdir c:\prage.cd >nul
  28. echo Copying files...
  29. xcopy runpart.bat c:\prage.cd\ragedemo.bat <f >nul
  30. IF ERRORLEVEL 1 GOTO fail
  31. xcopy *.drv c:\prage.cd >nul
  32. IF ERRORLEVEL 1 GOTO fail
  33. xcopy *.dig c:\prage.cd >nul
  34. IF ERRORLEVEL 1 GOTO fail
  35. xcopy *.mdi c:\prage.cd >nul
  36. IF ERRORLEVEL 1 GOTO fail
  37. xcopy aildrvr.lst c:\prage.cd >nul
  38. IF ERRORLEVEL 1 GOTO fail
  39. xcopy *.exe c:\prage.cd >nul
  40. IF ERRORLEVEL 1 GOTO fail
  41. GOTO success
  42.  
  43. :full
  44. echo Full installation selected
  45. IF NOT EXIST c:\prage.cd\CMOS GOTO fullcopy
  46. echo Warning! Primal Rage already exists on your hard drive,
  47. echo and will be overwritten.
  48. del c:\prage.cd\*.*
  49. IF ERRORLEVEL 1 GOTO quit
  50.  
  51. :fullcopy
  52. mkdir c:\prage.cd >nul
  53. echo Copying files...
  54. xcopy runfull.bat c:\prage.cd\ragedemo.bat <f >nul
  55. IF ERRORLEVEL 1 GOTO fail
  56. xcopy *.* c:\prage.cd >nul
  57. IF ERRORLEVEL 1 GOTO fail
  58. GOTO success
  59.  
  60. :success
  61. c:
  62. cd c:\prage.cd
  63. setsound
  64. echo -----------------------------
  65. echo Rage installation is complete.
  66. echo To run the demo, change to
  67. echo subdirectory C:\PRAGE.CD and
  68. echo type "RAGEDEMO".
  69. echo -----------------------------
  70. GOTO end
  71.  
  72. :fail
  73. echo Rage installation has Failed!
  74. :end
  75.  
  76.