home *** CD-ROM | disk | FTP | other *** search
/ The Complete Encyclopedia of Games 1 / Microforum-Over1000GamesVol1-Win31-CD2of2.iso / xtra / prog43 / install.bat < prev    next >
DOS Batch File  |  1994-11-18  |  988b  |  47 lines

  1. @echo off
  2. if "%1"=="" goto nopar
  3. if not exist disk1.dat goto nofile
  4. cls
  5. echo **** Installing Aladdin PC ****
  6. lha x /c disk1.dat %1
  7. if errorlevel 1 goto unpackerr
  8.  
  9. cls
  10. echo The installation process is complete.
  11. echo.
  12. echo After changing to the correct drive and directory, type
  13. echo SETSND        to set up sound options or type
  14. echo ALADDIN       to play the game.
  15. echo.
  16. goto end
  17.  
  18. :unpackerr
  19. echo.
  20. echo There was an error during installation.
  21. echo Are you sure you specified the drive and path
  22. echo correctly including the final \
  23. echo.
  24. echo e.g.  INSTALL C:\ALADDIN\
  25. echo.
  26. goto end
  27.  
  28. :nopar
  29. echo.
  30. echo You must type the drive & directory where you wish to install Aladdin
  31. echo.
  32. echo e.g.  INSTALL C:\ALADDIN\
  33. echo.
  34. echo Remember to include the '\' at the end.
  35. echo.
  36. goto end
  37.  
  38. :nofile
  39. echo.
  40. echo You must run the installation program
  41. echo from the installation disk drive.
  42. echo Change to the correct drive and try again.
  43. echo.
  44. goto end:
  45.  
  46. :end
  47.