You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
369 B
17 lines
369 B
:: @echo off
|
|
:: start "" "..\\analysis-system\\analysis-system.exe"
|
|
|
|
@echo off
|
|
chcp 65001 > nul
|
|
|
|
setlocal EnableDelayedExpansion
|
|
|
|
tasklist | find /I "analysis-system.exe" > nul
|
|
if "%ERRORLEVEL%"=="0" (
|
|
echo 程序正在运行
|
|
timeout /t 3 /nobreak > nul
|
|
exit /b
|
|
) else (
|
|
echo 程序没有运行
|
|
start "" "..\\analysis-system\\analysis-system.exe"
|
|
)
|