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.
10 lines
203 B
10 lines
203 B
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
echo [启动] GEO Task Worker v2 (免安装版)
|
|
python\python.exe main.py %*
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo [异常退出] 请检查错误信息
|
|
pause
|
|
)
|