home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ┌────────────────────────────────────────────────┐
- echo │ INSTALL │
- echo │ Band-in-a-Box for Windows │
- echo │ Copyright (c) 1992 by PG Music Inc. │
- echo └────────────────────────────────────────────────┘
- echo
- echo If you have Windows 3.1, you should exit this install
- echo by typing Ctrl-C and then type INSTALL from Windows.
- echo
- if %1x==x goto ParmErr
- if %2x==x goto ParmErr
- echo
- echo Ready to install Band-in-a-Box Windows from %1 to %2
- echo
- echo Press any key to continue ... (Ctrl-C to stop)
- pause > nul
- md %2 > nul
- cd %2
- cd %1
-
- dunpack %1\*.??$ %2\
- copy %1\*.dk %2
- copy blu*.* %2
- copy *.txt %2
-
- goto Success
- :ParmErr
- echo Install %1 %2 %3 %4 %5
- echo
- echo In order to install the program , you need
- echo to specify the source and destination to
- echo install the program from and to.
- echo
- echo Usage: INSTDOS SRC: DEST:
- echo
- echo For example INSTDOS A: C:\BB
- echo
- goto Fail
- echo
- :Fail
- echo Please retype as above, adding the source and destination
- echo subdirectories. The source is the name of the floppy
- echo drive that you're installing from .We suggest C:\BB
- echo as the destination subdirectory.
- goto End
- :Success
- rem cls
- copy readdos.txt con
- cd %2
- echo INSTALL successful
- echo Enjoy your Band-in-a-Box for Windows!
- echo
- echo
- :End
- echo
-