home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
100GAME
/
DOH.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-06-15
|
2KB
|
48 lines
echo off
rem install.bat 03/30/89 single disk install
if %1a == a goto bad
if %2a == a goto bad
if %1 == %2 goto bad
cls
echo ╔════════════════════════════════════════════════════════╗
echo ║ Taito Software Inc. REVENGE OF DOH Install Program ║
echo ╚════════════════════════════════════════════════════════╝
echo .
echo Installing To %1
echo .
echo .
md %2\REVOFDOH
copy %1\install.bat %2\REVOFDOH
if not exist %2\REVOFDOH\install.bat goto bad1
copy %1\*.* %2\REVOFDOH
goto last1
rem
:bad1
echo .
echo Could Not Create The REVOFDOH Subdirectory On %2
echo REVENGE OF DOH Not Installed.
goto last1
:BAD
cls
echo .
echo .
echo %0 %1 %2
echo .
echo Install option missing or invalid. Please try again.
echo Format of command is:
echo INSTALL [Source Drive] [Target Drive]
echo .
echo Where:
echo .
echo [Source Drive] is the drive containing the ORIGINAL REVENGE OF DOH disk
echo .
echo [Target Drive] is the destination drive & path you want REVENGE OF DOH
echo copied to.
echo .
echo .
echo Example: INSTALL A: C:
echo .
echo This would install the game into C:\REVOFDOH from the A: drive.
echo .
:last1