home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today (BR) Volume 3 #4
/
CDROMTODAY_v3n4.iso
/
edemo
/
aptiva
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1996-10-21
|
484b
|
30 lines
@echo off
rem Batch to install MWave aptiva drivers
rem *****************
rem (c) Ubi Soft 1996
rem *****************
install
if ERRORLEVEL 4 goto error4
if ERRORLEVEL 1 goto error1
goto success
:error4
echo Fichiers d'installation non trouvΘs.
:success
echo Pilotes MWave correctement installΘs.
goto end
:error1
goto msg
:msg
echo Une erreur s'est produite lors de l'installation.
echo Contactez votre revendeur pour plus d'infos.
:end
PAUSE
cls