home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Spiele Spiele Spiele 1
/
spiele-spiele-spiele-topware.iso
/
spiele
/
top8035
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-01-11
|
3KB
|
66 lines
@echo off
md C:\Rloft
echo ┌────────────────────────────────────────────────────────┐
echo │ Ravenloft Demo Installation │
echo └────────────────────────────────────────────────────────┘
if s%1 == s goto GetParams
if s%2 == s goto GetParams
if NOT EXIST %1\rloft.zip goto FileNotExist
if EXIST %2\nul goto Install
md %2 > NUL
if NOT EXIST %2\nul goto DirNotExist
:Install
echo ┌────────────────────────────────────────────────────────┐
echo │ │
echo │ Installing Ravenloft Demo │
echo │ │
echo │ Please wait... │
echo │ │
echo └────────────────────────────────────────────────────────┘
pkunzip %1\rloft.zip %2 > NUL
echo ┌────────────────────────────────────────────────────────┐
echo │ │
echo │ Ravenloft Demo Installed, type README for more │
echo │ information or RLOFT to run the demo. │
echo │ │
echo └────────────────────────────────────────────────────────┘
goto End
:DirNotExist
echo ┌────────────────────────────────────────────────────────┐
echo │ │
echo │ Cannot create the specified directory. You may wish │
echo │ to create that directory yourself and then run │
echo │ INSTALL again. │
echo │ │
echo └────────────────────────────────────────────────────────┘
goto End
:FileNotExist
echo ┌────────────────────────────────────────────────────────┐
echo │ │
echo │ Cannot find RLOFT.ZIP on the specified source │
echo │ drive. Check your parameters then run │
echo │ INSTALL again. │
echo │ │
echo └────────────────────────────────────────────────────────┘
goto End
:GetParams
echo ┌────────────────────────────────────────────────────────┐
echo │ │
echo │ USAGE: INSTALL [SOURCE_DRIVE] [DESTINATION_DIRECTORY] │
echo │ │
echo │ EXAMPLE: INSTALL A: C:\RLOFT │
echo │ │
echo │ The destination directory must already exist. │
echo │ │
echo └────────────────────────────────────────────────────────┘
:End