jw项目windows环境软件安装
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

1 year ago
  1. :: @echo off
  2. :: start "" "..\\analysis-system\\analysis-system.exe"
  3. @echo off
  4. chcp 65001 > nul
  5. setlocal EnableDelayedExpansion
  6. tasklist | find /I "analysis-system.exe" > nul
  7. if "%ERRORLEVEL%"=="0" (
  8. echo 程序正在运行
  9. timeout /t 3 /nobreak > nul
  10. exit /b
  11. ) else (
  12. echo 程序没有运行
  13. start "" "..\\analysis-system\\analysis-system.exe"
  14. )