home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Demo / PCDUO / data1.cab / Gateway_Files / GWUNINST.BAT next >
DOS Batch File  |  2003-11-28  |  524b  |  23 lines

  1. @ECHO OFF
  2. REM GWUNINST.BAT - Uninstalls the PC-Duo Gateway32 Service
  3. REM D.B. 06-Jan-03 
  4.  
  5. ECHO Stopping the Gateway32 Service
  6. REM Exit status from NET commands is not reliable. 
  7. REM It will be >0 if the service was not running.
  8. NET STOP GATEWAY32
  9. REM IF ERRORLEVEL 1 GOTO ERROR
  10.  
  11. ECHO Deleting the Gateway32 Service
  12. REM Exit status from SC commands is not reliable. 
  13. REM It always seems to return 1.
  14. SC DELETE GATEWAY32
  15. REM IF ERRORLEVEL 1 GOTO ERROR
  16. GOTO END
  17.  
  18. :ERROR
  19.  
  20. :END
  21. ECHO GWUNINST.BAT finished.
  22.  
  23.