home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / 100UTILI / LRNBAS-1.ZIP / INST.BAT next >
DOS Batch File  |  1989-10-09  |  2KB  |  56 lines

  1. echo off
  2. cls
  3. echo            -----------------------------------------------
  4. echo                     L E A R N   B A S I C   N O W
  5. echo  
  6. echo             Microsoft QuickBASIC Interpreter Installation
  7. echo            -----------------------------------------------
  8. echo  
  9. echo This batch file installs the Microsoft QuickBASIC Interpreter and the
  10. echo Learn BASIC Now example programs on your hard disk in the C:\QBI
  11. echo directory.  For information about getting started with the Microsoft
  12. echo QuickBASIC Interpreter and the Microsoft QuickBASIC Express tutorial,
  13. echo read Chapters 1 and 2.
  14. echo  
  15. echo ---------------------------------------------------------------------
  16. echo If you do not want to install the Learn BASIC Now disks at this time,
  17. echo hold down the Ctrl key and press the Break key to quit.  Otherwise,
  18. pause
  19. echo Disk 1 is being copied to C:\QBI; please wait.
  20. echo  
  21. copy a:\*.exe c:\qbi
  22. copy a:\*.hlp c:\qbi
  23. copy a:\*.bas c:\qbi
  24. echo  
  25. echo ---------------------------------------------------------------------
  26. echo Remove Disk 1.  Insert Disk 2 in drive A and then
  27. pause
  28. echo Disk 2 is being copied to C:\QBI; please wait.
  29. echo  
  30. copy a:\*.* c:\qbi
  31. for %%p in (05 06 07 08 09 10 11 12) do md c:\qbi\chap%%p > nul
  32. for %%p in (05 06 07 08 09 10 11 12) do copy a:\chap%%p c:\qbi\chap%%p
  33. md c:\qbi\appndx-d > nul
  34. copy a:\appndx-d\*.* c:\qbi\appndx-d
  35. echo  
  36. echo ---------------------------------------------------------------------
  37. echo Remove Disk 2.  Insert Disk 3 in drive A and then
  38. pause
  39. echo Disk 3 is being copied to C:\QBI; please wait.
  40. echo  
  41. copy a:\*.* c:\qbi
  42. md c:\qbi\advr_ex > nul
  43. copy a:\advr_ex\*.* c:\qbi\advr_ex
  44. c:
  45. cd \qbi
  46. echo  
  47. echo ---------------------------------------------------------------------
  48. echo Installation is complete!  Remove Disk 3 and store all three disks in
  49. echo a safe place.
  50. echo  
  51. echo To start the Microsoft QuickBASIC Express tutorial, type "learn" and
  52. echo press Enter.  To start the Microsoft QuickBASIC Interpreter, type
  53. echo "qbi" and press Enter.
  54. del inst.bat
  55.  
  56.