9 lines
210 B
Batchfile
9 lines
210 B
Batchfile
|
|
@echo off
|
||
|
|
set install_path=%~dp0
|
||
|
|
cd /d %install_path%
|
||
|
|
cd nginx
|
||
|
|
nginx -s stop
|
||
|
|
|
||
|
|
taskkill /F /IM nginx.exe
|
||
|
|
wmic process where "CommandLine Like '%%EMS_NEW-0.0.1-SNAPSHOT.war%%' and name='java.exe'" call terminate
|