home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sound Sensations!
/
sound_sensations.iso
/
midifile
/
baldem
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1991-03-11
|
3KB
|
118 lines
@ECHO OFF
CLS
BREAK ON
ECHO
ECHO ╔══════════════════════════════════════════╗
ECHO ║ Ballade 2.0 Demo Installation Utility ║
ECHO ╚══════════════════════════════════════════╝
ECHO
ECHO
ECHO Do you want to install Ballade 2.0 Demo on your computer now?
ECHO
ECHO ENTER: (Yes/No/Quit)
ECHO
Response YNQ
if errorlevel 3 goto QUIT
if errorlevel 2 goto QUIT
if errorlevel 1 goto Yes
:yes
cls
ECHO
ECHO
ECHO Install Ballade 2.0 Demo to your Hard Disk or Floppy?
ECHO
ECHO ENTER: (H/F/Quit)
ECHO
Response HFQ
if errorlevel 3 goto QUIT
if errorlevel 2 goto No2
if errorlevel 1 goto Yes2
:yes2
cls
ECHO
ECHO
ECHO Ballade will create the proper subdirectories as it is
ECHO unpacked. Please type which hard disk you wish Ballade to be
ECHO installed on. C:, D:, or E:?
ECHO
ECHO ENTER: (C/D/E/Quit)
ECHO
Response CDEQ
if errorlevel 4 goto Quit
if errorlevel 3 goto E
if errorlevel 2 goto D
if errorlevel 1 goto C
:C
MD C:\BALLADE
DEMOFILE C:\BALLADE
GOTO DONE
:D
MD D:\BALLADE
DEMOFILE D:\BALLADE
GOTO DONE
:E
MD E:\BALLADE
DEMOFILE E:\BALLADE
GOTO DONE
:No2
cls
ECHO
ECHO To Install this Ballade Demo on Floppy Disk you *MUST* install
ECHO it on a 1.2 or 1.44 Meg High Density Floppy.
ECHO Do you have a high density Disk Drive?
ECHO
ECHO ENTER: (Yes/No/Quit)
ECHO
Response YNQ
if errorlevel 3 goto Quit
if errorlevel 2 goto sorry
if errorlevel 1 goto continue
:continue
cls
ECHO
ECHO
ECHO Which Floppy Disk do you wish Ballade to be installed on?
ECHO A or B ?
ECHO
ECHO ENTER: (A/B/Quit)
ECHO
Response ABQ
if errorlevel 3 goto Quit
if errorlevel 2 goto B
if errorlevel 1 goto A
:A
ECHO
ECHO Place a Formatted 1.2 or 1.44 Meg disk in Drive A: and
pause
DEMOFILE A:\
GOTO DONE
:B
ECHO
ECHO Place a Formatted 1.2 or 1.44 Meg disk in Drive B: and
pause
DEMOFILE B:\
GOTO DONE
:SORRY
ECHO
ECHO Sorry, Ballade 2.0 Demo must be installed on High Density Floppies.
pause
GOTO QUIT
:DONE
cls
ECHO
ECHO
ECHO Change to Ballade Directory and type "BALLADE" to start.
ECHO Enjoy
pause
:QUIT
CLS