home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1996 May / buyer-0596.iso / business / bplan / bpw-cd / lanset.bat < prev    next >
DOS Batch File  |  1994-03-23  |  744b  |  31 lines

  1. @echo off
  2. cls
  3. echo:
  4. echo This program will initialize setup on some problematic networks that
  5. echo mislead Setup due to irregular mapping and configuration.
  6. echo:
  7.  
  8. if "%1"=="" goto SyntaxErr
  9.  
  10. echo Please wait while initializing Setup . . .
  11. echo:
  12.  
  13. expand BPWSETUP.EX_ %1\BPWSETUP.EXE
  14. expand SETUPKIT.DL_ %1\SETUPKIT.DLL
  15. expand VBRUN300.DL_ %1\VBRUN300.DLL
  16.  
  17. echo:
  18. echo Your initial setup is now completed. You can now proceed with normal
  19. echo setup by running 'BPWSETUP.EXE A:' or 'BPWSETUP.EXE B:' found in the
  20. echo Windows directory, from the File / Run menu in Program Manager.
  21. echo:
  22. goto end
  23.  
  24. :SyntaxErr
  25. echo Syntax : lanset [Windows drive and directory]
  26. echo:
  27. echo          ex:   lanset F:\WINDOWS
  28. echo:
  29.  
  30. :end
  31.