home *** CD-ROM | disk | FTP | other *** search
/ PC Games 2 the Maxx / pcgames.zip / pcgames / GAMEDEM / LBDEMO.ZIP / INSTALL.SCR < prev    next >
Text File  |  1991-10-31  |  1KB  |  68 lines

  1. rem   Converting to Installation Script - 5/21/91 - RFA & Mark Wilden
  2. rem     Parameters are
  3. rem         %1:    drive on which to install the program
  4. rem         %2:    drive from which installation is taking place
  5. rem      %3:   contents of the configuration file
  6. rem      Note that the trailing colon must NOT be entered!
  7. rem    Check to see that there is enough space for the installation.
  8. space %1: 900 NoSpace
  9. godir %1:\sierra\robin CantCreate
  10. rem    Copy over the necessary files.
  11. echo Copying drivers...
  12. copy %2:*.drv
  13. copy %2:*.hlp
  14. copy %2:*.txt
  15. echo Copying resources...
  16. rem copy %2:scidhv.exe
  17. copy %2:sierra.exe %1:robin.exe
  18. copy %2:resource.001
  19. copy %2:resource.map
  20. copy %2:install.exe
  21. copy %2:readme
  22. echo %3 > resource.cfg
  23. copy %2:sierra.bat %1:robin.bat
  24. godir %1:\sierra
  25. copy %2:robin.bat
  26. cd..
  27. REM godir %1:\
  28. copy %2:root.bat %1:robin.bat 
  29. end
  30.  
  31. :NoSpace
  32. echo There is not enough space on %1 to install this Demo.
  33. echo Approximately 900 Kbytes of disk space are required.
  34. pause
  35. goto Exit
  36.  
  37. :CantCreate
  38. echo Unable to create directory %1.
  39. pause
  40. goto Exit
  41.  
  42. :Exit
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.