webos/other/start.bat
2024-02-28 17:21:32 +08:00

22 lines
504 B
Batchfile

@echo off
title webos
for /f "delims=" %%i in (pidfile.txt) do (
taskkill /pid %%i /f
)
:while
if exist webos_update.jar (
for /f "delims=" %%i in (pidfile.txt) do (
taskkill /pid %%i /f
)
del webos.jar
rename webos_update.jar webos.jar
goto :while
)
set "cp=%CD%"
set "javaPath=%cp%\..\jre\bin\java.exe"
set "lc=java"
if exist "%javaPath%" set "lc=%javaPath%"
%lc% -Dfile.encoding=UTF-8 -jar webos.jar
echo This window will close in 5 seconds
timeout /T 5
exit