home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR4 / WINLINK.ZIP / SETUP.BAT < prev    next >
DOS Batch File  |  1993-10-21  |  576b  |  26 lines

  1. @echo off
  2.  
  3. if "%1" == "" goto usuage
  4. if not exist %1\win.com goto nowin
  5. if not exist setup.bat goto nodefault
  6.  
  7. echo Copying files...
  8. xcopy win_link.* %1
  9. xcopy win_ipc.386 %1\system
  10. echo You must edit your %1\system.ini to include device=win_ipc.386
  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-Link files are on
  25. :end
  26.