home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Madness! Companion CD
/
3DMADNESS.iso
/
games
/
gknight
/
gknight.exe
/
COPY.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-03-09
|
2KB
|
52 lines
@ECHO OFF
CLS
CD \DOSDEMOS\GKNIGHT
ECHO
ECHO ╔════════════════════════════════════════════════════════╗
ECHO ║ ║
ECHO ║ The Magic of Interactive Entertainment ║
ECHO ║ ║
ECHO ╚════════════════════════════════════════════════════════╝
ECHO
ECHO
ECHO ──────────────────────────────────────────────────────────
ECHO The files for the "Gabriel Knight" interactive demo
ECHO will be installed to your C: hard drive. You need at
ECHO least 12 Megabytes of free space for the demo.
ECHO.
ECHO.
ECHO If this is NOT what you want to do, press the
ECHO Ctrl + C keys to stop this batch program
ECHO ──────────────────────────────────────────────────────────
ECHO
ECHO
ECHO
PAUSE Paused... press any key to continue the installation
CLS
ECHO
ECHO ┌───────────────────────────────────────────────────────────────────────┐
ECHO │ The software will now be installed to your C: hard drive. │
ECHO │ You'll see a message telling you when the installation is finished. │
ECHO │ This will take a while, so be patient. │
ECHO └───────────────────────────────────────────────────────────────────────┘
IF EXIST C:\DOSDEMOS\nul GOTO COPYING
MD C:\DOSDEMOS
:COPYING
MD C:\DOSDEMOS\GABRIEL
COPY *.* C:\DOSDEMOS\GABRIEL
CLS
ECHO
ECHO
ECHO ════════════════════════════════════════════════════════════════════════
ECHO.
ECHO The installation of the files is complete!
ECHO The files for the "Gabriel Knight" demo are located in the
ECHO C:\DOSDEMOS\GABRIEL directory. To start the demo, change to this
ECHO directory, type GABRIEL and press Enter.
ECHO.
ECHO ════════════════════════════════════════════════════════════════════════
ECHO
ECHO
pause
cls