20 lines
520 B
Batchfile
20 lines
520 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set "WD=%~dp0"
|
|
pushd "%WD%"
|
|
|
|
set "PATH=%WD%bin;%WD%usr\sbin;%PATH%"
|
|
|
|
echo Stopping GSP Windows Agent...
|
|
|
|
if exist "%WD%var\run\pure-ftpd.pid" set /p PID1=<"%WD%var\run\pure-ftpd.pid"
|
|
if exist "%WD%OGP\ogp_agent.pid" set /p PID2=<"%WD%OGP\ogp_agent.pid"
|
|
if exist "%WD%OGP\ogp_agent_run.pid" set /p PID3=<"%WD%OGP\ogp_agent_run.pid"
|
|
|
|
if not "%PID1%"=="" "%WD%bin\kill.exe" -15 %PID1%
|
|
if not "%PID2%"=="" "%WD%bin\kill.exe" -15 %PID2%
|
|
if not "%PID3%"=="" "%WD%bin\kill.exe" -15 %PID3%
|
|
|
|
echo Done.
|
|
pause
|