home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top2135 / setup.bat < prev    next >
DOS Batch File  |  1993-11-17  |  511b  |  26 lines

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