Files
2026-06-30 15:14:37 +08:00

29 lines
665 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001 >nul
echo ========================================
echo MeshRay 调试模式 - 带控制台输出
echo ========================================
echo.
if not exist "meshray.exe" (
echo ❌ meshray.exe 不存在,请先编译!
pause
exit /b 1
)
echo [1/2] 启动 MeshRay...
echo.
echo ️ 提示:
echo - 这是调试模式,会显示控制台窗口
echo - 正常版本应该隐藏控制台(仅显示托盘)
echo - 按 Ctrl+C 停止服务
echo - 观察托盘图标是否出现
echo.
echo ========================================
echo.
REM 使用普通编译版本运行(带控制台)
meshray.exe
pause