11 lines
285 B
Batchfile
11 lines
285 B
Batchfile
set install_path=%~dp0
|
|
cd /d %install_path%
|
|
cd ../nginx
|
|
echo "¿ªÊ¼Í£Ö¹Ç°Ì¨·þÎñnginx......."
|
|
nginx -s stop
|
|
taskkill /F /IM nginx.exe
|
|
cd ../
|
|
echo "¿ªÊ¼Í£Ö¹ºǫ́·þÎñ......."
|
|
wmic process where "CommandLine Like '%%EMS_NEW-0.0.1-SNAPSHOT.war%%' and name='java.exe'" call terminate
|
|
cd %~dp0
|