home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="" goto start
- if "%1"=="START" goto start
- if "%1"=="start" goto start
- if "%1"=="STOP" goto stop
- if "%1"=="stop" goto stop
- :error
- echo "Usage : %0 START|STOP"
- goto end
- :start
- C:\TUNTCP\TUNNFS.EXE
-
- goto end
- :stop
- C:\TUNTCP\NFSUTIL.EXE -u
-
- :end
-
-