home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 1102.HDSETUP.BAT < prev    next >
DOS Batch File  |  1990-12-09  |  1KB  |  46 lines

  1. @echo off
  2. echo            ┌───────────────────────────────────┐
  3. echo            │ Press any key  to begin preparing │
  4. echo            │ hard disk subdirectory with files │
  5. echo            │ to run FS3/FS4 Facilities Locator │
  6. echo            └───────────────────────────────────┘
  7. pause
  8.  
  9. if exist locator.drv goto get_driver
  10. echo            Now copying LOCATOR.DRV"...
  11. copy b:locator.drv
  12.  
  13. if exist fs4.exe goto f4ver
  14. if exist config.fs3 goto addon
  15. echo            Now copying "CONFIG.FS3"...
  16. copy b:config.fs3
  17. goto get_driver
  18.  
  19. :addon
  20. echo            Because you already have a "config.fs3,"
  21. echo            this setup will add "LOCATOR.DRV" to it.
  22. copy b:config.fs3+config.fs3 config.tmp
  23. del config.fs3
  24. ren config.tmp config.fs3
  25. goto get_driver
  26.  
  27. :f4ver
  28. if exist config.fs4 goto addon4
  29. echo            Now copying "CONFIG.FS4"...
  30. copy b:config.fs4
  31. goto get_driver
  32.  
  33. :addon4
  34. echo            Because you already have a "config.fs4,"
  35. echo            this setup will add "LOCATOR.DRV" to it.
  36. copy b:config.fs4+config.fs4 config.tmp
  37. del config.fs4
  38. ren config.tmp config.fs4
  39.  
  40. :get_driver
  41. echo            Now copying all ".FLD" databases...
  42. copy b:*.fld
  43. echo            Successful completion!
  44.  
  45. :end
  46.