home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 4 / 1995-03_Disc_4.iso / wog / install.bat < prev    next >
DOS Batch File  |  1995-01-04  |  1KB  |  45 lines

  1. @echo off
  2. if exist install.dat goto do_sound
  3. if '%1' == '' goto help
  4. if '%2' == '' goto help
  5.  
  6. REM Perform the installation
  7. %2:
  8. cd \
  9. md WGDEMO
  10. cd WGDEMO
  11. %1:
  12. xcopy /s \wog\*.* %2:\wgdemo
  13. %2:
  14. cd \wgdemo
  15. md saved
  16. md tapes
  17. sndtest
  18. dir > install.dat
  19. echo The installation of Wings of Glory demo is complete.
  20. echo Type WG to run the demo.
  21. goto done
  22.  
  23. :do_sound
  24. sndtest
  25. goto done
  26.  
  27. :help
  28. echo.
  29. echo Wings of Glory Demo Installation Instructions:
  30. echo ------------------------------------------------------------------------
  31. echo This demo is designed to run from a hard drive.
  32. echo In order to play, you must have have around 11 megs free.
  33. echo To install this demo to a hard drive, type INSTALL followed by the
  34. echo drive letter of the source CD drive and the drive letter of the desired
  35. echo destination hard drive.
  36. echo.
  37. echo Example:
  38. echo        INSTALL E C
  39. echo.
  40. echo This will install the Wings of Glory demo to the C: drive from the E:
  41. echo drive, in the directory WGDEMO.
  42. echo.
  43. :done
  44.  
  45.