home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
1102.HDSETUP.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-12-09
|
1KB
|
46 lines
@echo off
echo ┌───────────────────────────────────┐
echo │ Press any key to begin preparing │
echo │ hard disk subdirectory with files │
echo │ to run FS3/FS4 Facilities Locator │
echo └───────────────────────────────────┘
pause
if exist locator.drv goto get_driver
echo Now copying LOCATOR.DRV"...
copy b:locator.drv
if exist fs4.exe goto f4ver
if exist config.fs3 goto addon
echo Now copying "CONFIG.FS3"...
copy b:config.fs3
goto get_driver
:addon
echo Because you already have a "config.fs3,"
echo this setup will add "LOCATOR.DRV" to it.
copy b:config.fs3+config.fs3 config.tmp
del config.fs3
ren config.tmp config.fs3
goto get_driver
:f4ver
if exist config.fs4 goto addon4
echo Now copying "CONFIG.FS4"...
copy b:config.fs4
goto get_driver
:addon4
echo Because you already have a "config.fs4,"
echo this setup will add "LOCATOR.DRV" to it.
copy b:config.fs4+config.fs4 config.tmp
del config.fs4
ren config.tmp config.fs4
:get_driver
echo Now copying all ".FLD" databases...
copy b:*.fld
echo Successful completion!
:end