Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

26 Zeilen
724 B

  1. @echo off
  2. setlocal
  3. title Logic Waveform Viewer
  4. cd /d "%~dp0"
  5. set "PYTHON_EXE="
  6. if exist "%USERPROFILE%\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\pythonw.exe" set "PYTHON_EXE=%USERPROFILE%\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\pythonw.exe"
  7. if defined PYTHON_EXE goto python_found
  8. where pythonw >nul 2>nul
  9. if not errorlevel 1 set "PYTHON_EXE=pythonw"
  10. if defined PYTHON_EXE goto python_found
  11. where python >nul 2>nul
  12. if not errorlevel 1 set "PYTHON_EXE=python"
  13. if defined PYTHON_EXE goto python_found
  14. echo No usable Python runtime was found.
  15. echo Please install Python 3.9 or later.
  16. pause
  17. exit /b 1
  18. :python_found
  19. "%PYTHON_EXE%" "%~dp0parse_logic_gui.py"
  20. exit /b %ERRORLEVEL%