home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Madness! Companion CD
/
3DMADNESS.iso
/
dosshow
/
instsi.bat
< prev
next >
Wrap
DOS Batch File
|
1994-09-06
|
4KB
|
79 lines
@ECHO OFF
REM Installation program for "Stunt Island player"
REM -----------------------------------------------------------------
IF .%1==. GOTO NEED_DRIVE
IF NOT EXIST %1\NUL GOTO NEED_DRIVE
CLS
ECHO.
ECHO ╔════════════════════════════════════════════════════════════╗
ECHO ║ Stunt Island player and movies ║
ECHO ║ DISK INSTALLATION ║
ECHO ║ ║
ECHO ║ You have chosen to install this software to your %1 hard ║
ECHO ║ drive. The files will take up about 7 megabytes of space. ║
ECHO ║ ║
ECHO ║ ║
ECHO ║ If this is NOT what you want to do, press the Ctrl + C ║
ECHO ║ keys to end this batch program. ║
ECHO ║ ║
ECHO ╚════════════════════════════════════════════════════════════╝
ECHO.
ECHO.
ECHO.
PAUSE
CLS
ECHO ┌────────────────────────────────────────────────────────────────┐
ECHO │ The software will now be copied copied to your %1 hard drive. │
ECHO │ You'll see a message on your screen telling you when the │
ECHO │ installation is finished. │
ECHO └────────────────────────────────────────────────────────────────┘
ECHO.
MD %1\SIDEMO
MD %1\SIDEMO\VAULT
ECHO
COPY \DOSSHOW\STUNT\*.BIN %1\SIDEMO
COPY \DOSSHOW\STUNT\INST.EXE %1\SIDEMO
COPY \DOSSHOW\STUNT\INSTALL.CFG %1\SIDEMO
COPY \DOSSHOW\STUNT\PLAYONE.EXE %1\SIDEMO
COPY \DOSSHOW\STUNT\SETUP.BAT %1\SIDEMO
COPY \DOSSHOW\STUNT\STUNT.DOC %1\SIDEMO
COPY \DOSSHOW\STUNT\VAULT\*.* %1\SIDEMO\VAULT
CLS
ECHO
ECHO.
ECHO ╔═════════════════════════════════════════════════════════════════════════╗
ECHO ║ ║
ECHO ║ The installation of the Stunt Island player and movies is finished! ║
ECHO ║ ║
ECHO ║ You'll find the files in the %1\SIDEMO directory of your hard drive. ║
ECHO ║ ║
ECHO ║ Read the file STUNT.DOC before playing any movies. ║
ECHO ║ ║
ECHO ╚═════════════════════════════════════════════════════════════════════════╝
ECHO.
ECHO.
ECHO.
PAUSE Press any key to continue...
GOTO FINISHED
:NEED_DRIVE
CLS
ECHO
ECHO.
ECHO ┌─────────────────────────────────────────────────────────────┐
ECHO │ You have not specified the correct name of your hard drive. │
ECHO │ For the installation to work, you need to type │
ECHO │ │
ECHO │ INSTALL drive: │
ECHO │ │
ECHO │ (drive: is the drive letter of your hard drive) │
ECHO │ │
ECHO │ For example, to install to your C: drive... │
ECHO │ │
ECHO │ INSTALL C: │
ECHO │ │
ECHO └─────────────────────────────────────────────────────────────┘
ECHO.
ECHO.
ECHO.
:FINISHED