home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l170 / 1.ddi / SETUP.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-01-29  |  1.4 KB  |  35 lines

  1. ECHO OFF
  2. IF "%1" == "" GOTO UsageExit
  3. IF "%2" == "" GOTO UsageExit
  4. %1
  5. IF EXIST %2\*.* GOTO DoSetup
  6. md %2
  7. :DoSetup
  8. cd %2
  9. copy a:setup1.bat
  10. setup1 %1 %2 %3 %4
  11.  
  12. :UsageExit
  13. CLS
  14. ECHO Usage:   A:SETUP drive workDir [exeDir [libDir] ]
  15. ECHO  
  16. ECHO          Where
  17. ECHO                drive is the drive on which QuickBASIC is to be
  18. ECHO                    installed                        (ex: C:)
  19. ECHO                workDir is the pathname to where you want your
  20. ECHO                    QuickBASIC source programs to go (ex: \QB4)
  21. ECHO                exeDir  is the pathname to where you want the
  22. ECHO                    executeable files to go          (ex: \BIN)
  23. ECHO                libDir  is the pathname to where you want the
  24. ECHO                    library files to go              (ex: \LIB)
  25. ECHO  
  26. ECHO          Examples:  a:setup c: \qb4 \bin \lib
  27. ECHO                     a:setup c: \qb4   (copies ALL files to c:\qb4)
  28. ECHO  
  29. ECHO Note:    This setup batch file is intended only for assisting you 
  30. ECHO          in installing QuickBASIC onto your hard disk.   Its use is
  31. ECHO          optional; you can just copy all the files to the directory(s) 
  32. ECHO          of your choice, if you wish.   If you do not have a hard disk, 
  33. ECHO          see the section entitled 'Installing QuickBASIC: Floppy-Disk 
  34. ECHO          Setup' in the 'Learning and Using QuickBASIC' manual.
  35.