home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sound Sensations!
/
sound_sensations.iso
/
miscprog
/
sndp151e
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1992-07-07
|
3KB
|
93 lines
@echo off
if %1/==/ goto ERR
if %2/==/ goto ERR
if %3/==/ goto ERR
cls
echo.
echo.
echo ╔═════════════════════════════╗
echo ║ SoundPro Version 1.51e ║
echo ║ (c) 1991-92 by P. Schönthal ║
echo ╟─────────────────────────────╢
echo ║ Installationprogram ║
echo ╚═════════════════════════════╝
echo.
echo.
echo.
echo. ATTENTION:
echo ----------
echo.
echo All the path-informations may not end with a '\'. You may abort the
echo installationprogram now and correct your path-informations.
echo.
echo Push CTRL+BREAK to quit the installationprogram or any other key to
echo continue.
echo.
pause >nul
cls
echo.
echo.
echo ╔═════════════════════════════╗
echo ║ SoundPro Version 1.51e ║
echo ║ (c) 1991-92 by P. Schönthal ║
echo ╟─────────────────────────────╢
echo ║ Installationprogram ║
echo ╚═════════════════════════════╝
echo.
echo.
%2
cd \
md soundpro
cd soundpro
echo.
echo Copying the program- and textfiles to your SoundPro-Directory ...
copy %1\softpro.* >nul
copy %1\*.wri >nul
copy %1\*.txt >nul
cd %3
echo.
echo Copying the libraries to your Window-Directory ...
copy %1\*.vbx %3\ >nul
copy %1\*.dll %3\ >nul
cls
echo.
echo.
echo ╔═════════════════════════════╗
echo ║ SoundPro Version 1.51e ║
echo ║ (c) 1991-92 by P. Schönthal ║
echo ╟─────────────────────────────╢
echo ║ Installationprogram ║
echo ╚═════════════════════════════╝
echo.
echo.
echo.
echo.
echo Congratulation:
echo ---------------
echo.
echo The installation has ended successfully. You may now add
echo SOUNDPRO.EXE to the programmanager of Windows.
echo.
echo.
goto EXIT
:ERR
cls
echo.
echo ╔════════════════════════════════════════════╗
echo ║ ║
echo ║ ***** E R R O R ***** ║
echo ║ ║
echo ╟────────────────────────────────────────────╢
echo ║ ║
echo ║ Correct startup: (DD=Disk Drive) ║
echo ║ ║
echo ║ INSTALL SourceDD DestinationDD Windowspath ║
echo ║ ║
echo ║ e.g. INSTALL a: d: c:\windows ║
echo ║ ║
echo ╚════════════════════════════════════════════╝
echo.
:EXIT
echo.