home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Demo
/
PCDUO
/
data1.cab
/
Gateway_Files
/
GWUNINST.BAT
next >
Wrap
DOS Batch File
|
2003-11-28
|
524b
|
23 lines
@ECHO OFF
REM GWUNINST.BAT - Uninstalls the PC-Duo Gateway32 Service
REM D.B. 06-Jan-03
ECHO Stopping the Gateway32 Service
REM Exit status from NET commands is not reliable.
REM It will be >0 if the service was not running.
NET STOP GATEWAY32
REM IF ERRORLEVEL 1 GOTO ERROR
ECHO Deleting the Gateway32 Service
REM Exit status from SC commands is not reliable.
REM It always seems to return 1.
SC DELETE GATEWAY32
REM IF ERRORLEVEL 1 GOTO ERROR
GOTO END
:ERROR
:END
ECHO GWUNINST.BAT finished.