home *** CD-ROM | disk | FTP | other *** search
/ MIDI Music Collection / MUSIC.iso / biaboxp6 / instdos.bat < prev    next >
Encoding:
DOS Batch File  |  1994-05-25  |  1.4 KB  |  58 lines

  1. echo off
  2. cls
  3. echo     ┌────────────────────────────────────────────────┐
  4. echo     │                    INSTALL                     │
  5. echo     │       Band-in-a-Box for Windows                │
  6. echo     │       Copyright (c) 1992 by PG Music Inc.      │
  7. echo     └────────────────────────────────────────────────┘
  8. echo  
  9. echo    If you have Windows 3.1, you should exit this install 
  10. echo    by typing Ctrl-C and then type INSTALL from Windows.
  11. echo  
  12. if %1x==x goto ParmErr
  13. if %2x==x goto ParmErr
  14. echo  
  15. echo   Ready to install Band-in-a-Box Windows from %1 to %2
  16. echo  
  17. echo   Press any key to continue ... (Ctrl-C to stop)
  18. pause > nul
  19. md %2 > nul
  20. cd %2
  21. cd %1
  22.  
  23. dunpack %1\*.??$ %2\
  24. copy %1\*.dk %2
  25. copy blu*.* %2
  26. copy *.txt %2
  27.  
  28. goto Success
  29. :ParmErr
  30. echo   Install %1 %2 %3 %4 %5
  31. echo  
  32. echo   In order to install the program , you need
  33. echo    to specify the source and destination to
  34. echo    install the program from and to.
  35. echo  
  36. echo   Usage:  INSTDOS SRC: DEST:
  37. echo  
  38. echo   For example  INSTDOS A: C:\BB
  39. echo  
  40. goto Fail
  41. echo  
  42. :Fail
  43. echo   Please retype as above, adding the source and destination
  44. echo   subdirectories. The source is the name of the floppy
  45. echo   drive that you're installing from .We suggest C:\BB
  46. echo   as the destination subdirectory.
  47. goto End
  48. :Success
  49. rem cls
  50. copy readdos.txt con
  51. cd %2
  52. echo   INSTALL successful
  53. echo   Enjoy your Band-in-a-Box for Windows!
  54. echo  
  55. echo  
  56. :End
  57. echo  
  58.