home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 10 / mycd10.iso / progs / tun / dos / tcp / tcpn.arc / AUTONFS.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-04-28  |  281 b   |  19 lines

  1. @echo off
  2. if "%1"=="" goto start
  3. if "%1"=="START" goto start
  4. if "%1"=="start" goto start
  5. if "%1"=="STOP" goto stop
  6. if "%1"=="stop" goto stop
  7. :error
  8. echo "Usage : %0 START|STOP"
  9. goto end 
  10. :start
  11. C:\TUNTCP\TUNNFS.EXE
  12.  
  13. goto end
  14. :stop
  15. C:\TUNTCP\NFSUTIL.EXE -u
  16.  
  17. :end
  18.  
  19.