home *** CD-ROM | disk | FTP | other *** search
/ Season's Greetings & Games Unlimited / UGOLD_cd2.iso / ww2107 / install.bat < prev    next >
DOS Batch File  |  1995-05-09  |  2KB  |  54 lines

  1. @echo off
  2. cls
  3. echo ════════════════════════════════════════════════════════════
  4. echo    Install program for WW2 in Europe v1.07
  5. echo ════════════════════════════════════════════════════════════
  6. echo  
  7. if "%1" == "" goto howto
  8. if "%1" == "c" goto howto
  9. if "%1" == "C" goto howto
  10. if "%1" == "d" goto howto
  11. if "%1" == "D" goto howto
  12. if "%1" == "a:" goto howto
  13. if "%1" == "A:" goto howto
  14. if "%1" == "b:" goto howto
  15. if "%1" == "B:" goto howto
  16. if not exist ww2.zip goto howto
  17. if not exist install.bat goto howto
  18. echo  
  19. echo WW2 in Europe installation
  20. echo This will create a directory called \ww2e on the '%1' disk
  21. echo and copy the game files into it. It will NOT make any other
  22. echo changes to your system.
  23. echo  
  24. echo Hit Ctrl-C if you do NOT wish to continue
  25. pause
  26. echo Creating directory '\ww2e' on '%1' drive
  27. mkdir %1\ww2e
  28. echo  
  29. echo Copying files...
  30. copy *.* %1\ww2e
  31. echo Changing to WW2 Directory...
  32. %1
  33. cd\ww2e
  34. unzip ww2.zip
  35. del *.zip
  36. echo WW2 in Europe is now installed !
  37. echo To play the game type:
  38. echo WW2
  39. goto done4
  40. :howto
  41. echo Place Master Disk in drive and go to that drive and type
  42. echo "INSTALL DRIVE:" where DRIVE: is the TARGET drive.
  43. echo :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  44. echo NOTE THAT YOU MUST INCLUDE THE COLON AS PART OF THE DRIVE DESIGNATION
  45. echo :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  46. echo  
  47. echo EXAMPLE:
  48. echo To copy the game from the A: drive to the C: drive,
  49. echo you would type
  50. echo            A:          [enter]
  51. echo            INSTALL C:  [enter]
  52. echo If your target disk is a drive other than C: use its letter instead.
  53. :done4
  54.