home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top2018 / setup.bat < prev    next >
DOS Batch File  |  1994-04-15  |  468b  |  25 lines

  1. @echo off
  2.  
  3. if "%1" == "" goto usuage
  4. if not exist winview.exe goto nodefault
  5.  
  6. echo Copying files...
  7. echo on
  8. xcopy winview.* %1
  9. xcopy *.d?l %1
  10. goto end
  11.  
  12. :usuage
  13. echo type setup windows_directory
  14. echo      for example, if windows is loaded in c:\windows type:
  15. echo      setup c:\windows
  16. goto end
  17.  
  18. :nowin
  19. echo %1\win.com not found - not windows directory
  20. goto end
  21.  
  22. :nodefault
  23. echo Must run setup from the disk/drive the Win-View files are on
  24. :end
  25.