home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Games 4 / CD_1.iso / games / gal-emp / install.bat < prev    next >
DOS Batch File  |  1991-12-09  |  2KB  |  54 lines

  1. echo off
  2. CLS
  3. if "==%1" goto BADDRIVE
  4. for %%f in (A:,a:,B:,b:,C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:) do if %1==%%f goto START
  5. for %%f in (I:,i:,J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:) do if %1==%%f goto START
  6. for %%f in (P:,p:,Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:,X:,x:,Y:,y:,Z:,z:) do if %1==%%f goto START
  7. :BADDRIVE
  8. echo 
  9. echo You must enter a drive name.
  10. echo in the form
  11. echo             INSTALL d:
  12. goto END
  13. : START
  14. echo This will install Galactic Empires
  15. echo in the directory \GE60 on the drive specified
  16. echo in the command line (INSTALL d:).
  17. echo  
  18. echo If you do NOT want to install it in this
  19. echo directory press ctl-C or ctl-break now
  20. echo and you will be returned to the DOS prompt.
  21. echo  
  22. echo Press any key to begin installation...
  23. pause >nul
  24. if exist %1\ge60\ge.exe goto NEXT
  25. md %1\ge60 >nul
  26. : NEXT
  27. CLS
  28. echo  
  29. echo  
  30. echo  
  31. echo  
  32. echo  
  33. echo  
  34. echo                          ╔════════════════════════════════╗
  35. echo                          ║ Installing Galctictic Empires  ║
  36. echo                          ║         Please wait...         ║
  37. echo                          ╚════════════════════════════════╝
  38. copy ge.exe %1\ge60 >nul
  39. copy hallfame.exe %1\ge60 >nul
  40. copy hallfame %1\ge60 >nul
  41. copy readme.ge %1\ge60 >nul
  42. copy install.bat %1\ge60 >nul
  43. echo                             Installation is complete.
  44. echo                             To begin Galactic Empires type:
  45. echo  
  46. echo                             GE [enter]
  47. echo  
  48. echo                             at the prompt.
  49. %1
  50. cd %1\ge60
  51. : END
  52.  
  53.  
  54.