home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 3 / CD-ROM_Today_The_Disc_3_August-September_1994.iso / baseball / install.bat < prev    next >
DOS Batch File  |  1994-03-06  |  1KB  |  40 lines

  1. @echo off
  2. echo You are about to install the Front Page Sports: Baseball
  3. echo demonstration program to your hard drive. This demo will
  4. echo require approximately 5.25 megabytes of available hard drive
  5. echo space to install. When the installation is complete, the
  6. echo demo will occupy approximately 3.75 megabytes.
  7. echo.
  8. echo To install the FPS:Baseball demo, you must be logged to
  9. echo the drive or subdirectory where these files are located.
  10. echo.
  11. echo Press CTRL-C now to abort the installation of the demo or
  12. pause
  13. if "%1"=="" GOTO param
  14. md %1\dynamix
  15. md %1\dynamix\baseball
  16. copy . %1\dynamix\baseball
  17. %1
  18. cd \dynamix\baseball
  19. baseball.exe /r
  20. del baseball.exe
  21. echo.
  22. echo The Front Page Sports: Baseball demo is now installed to
  23. echo your %1 drive. To run the demo type: PLAYBALL [enter]
  24. echo.
  25. echo If you have a 100% SoundBlaster compatible sound card
  26. echo installed, type: PLAYBALL -SB [enter]
  27. echo.
  28. echo For complete information about this demo, type: README [enter]
  29. echo.
  30. echo Copyright 1994 Dynamix, Inc.
  31. goto end
  32. :param
  33. echo You need to specify the drive letter (with colon) of the drive
  34. echo you wish to install the Front Page Sports: Baseball demo on.
  35. echo.
  36. echo For example, if you wish to install the demo to the C: drive
  37. echo you should type: INSTALL C: [enter]
  38. goto end
  39. :end
  40.