home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Madness! Companion CD
/
3DMADNESS.iso
/
dosdemos
/
inst3dws.bat
next >
Wrap
DOS Batch File
|
1994-09-09
|
4KB
|
78 lines
@ECHO OFF
IF .%1==. GOTO NEED_DRIVE
IF NOT EXIST %1\NUL GOTO NEED_DRIVE
CLS
ECHO.
ECHO ╔════════════════════════════════════════════════════════╗
ECHO ║ 3D Workshop Demo ║
ECHO ║ Installation Program ║
ECHO ╚════════════════════════════════════════════════════════╝
ECHO.
ECHO.
ECHO ┌────────────────────────────────────────────────────────┐
ECHO │ You have chosen to install the 3D Workshop Demo │
ECHO │ to your %1 hard drive. │
ECHO │ │
ECHO │ │
ECHO │ The files will take up about 4 megabytes of space. │
ECHO │ │
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 for the demo will now be installed to your %1 hard │
ECHO │ drive. This will take a while, so be patient... │
ECHO │ │
ECHO │ You'll see a message telling you when the installation is finished. │
ECHO └───────────────────────────────────────────────────────────────────────┘
ECHO.
MD %1\3DWKSHOP
XCOPY \DOSDEMOS\3DWKSHOP\*.* /S /E %1\3DWKSHOP\
CLS
ECHO
ECHO.
ECHO ╔═════════════════════════════════════════════════════════════════════╗
ECHO ║ ║
ECHO ║ The disk installation for the 3D Workshop Demo is complete! ║
ECHO ║ ║
ECHO ║ You'll find the files in the %1\3DWKSHOP directory of your ║
ECHO ║ hard drive. To start the demo, change to this directory, type ║
ECHO ║ 3DWSLITE and press Enter. ║
ECHO ║ ║
ECHO ╚═════════════════════════════════════════════════════════════════════╝
ECHO.
ECHO.
ECHO.
ECHO.
PAUSE
GOTO FINISHED
:NEED_DRIVE
CLS
ECHO
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.
:FINISHED