home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo
- echo Studio PLUS Software Installation
- echo ---------------------------------
- if $%1 == $ goto prompt
- if %1 == c goto cdrive
- if %1 == C goto cdrive
- if %1 == c: goto cdrive
- if %1 == C: goto cdrive
- if %1 == d goto ddrive
- if %1 == D goto ddrive
- if %1 == d: goto ddrive
- if %1 == D: goto ddrive
- rem
- rem Prompt for batch file syntax
- rem
- :prompt
- echo
- echo
- echo The INSTALL procedure can install Studio PLUS on drive C or D.
- echo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- echo Use one of the following: install c or install d
- echo - - - - - - - - - - - - - - - - - - - - - - - - -
- goto exit
- rem
- rem C drive installation
- rem
- :cdrive
- echo Installing on drive C.
- echo Make sure Studio PLUS diskette is in drive A.
- echo ---------------------------------------------
- pause
- echo
- echo Creating directory.... C:\PLUS
- echo Note: If you are re-installing ignore directory error messages.
- md c:\PLUS
- echo
- echo Copying files...
- copy a:\*.* c:\plus
- cls
- echo
- echo The Shareware version of Studio Plus installed on drive C!
- echo
- echo Type PLUS at the C:\PLUS prompt.
- echo
- pause
- goto exit
- rem
- rem D drive installation
- rem
- :ddrive
- echo Installing on drive D.
- echo Make sure Studio PLUS diskette is in drive A.
- echo ---------------------------------------------
- pause
- echo
- echo Creating directories.... D:\PLUS
- echo Note: If you are re-installing ignore directory error messages.
- md d:\plus
- echo
- echo Copying files...
- copy a:\*.* d:\plus
- cls
- echo
- echo The Shareware version of Studio Plus installed on drive D!
- echo
- echo Type PLUS at the D:\PLUS prompt.
- echo
- pause
- :exit
-