@@ -0,0 +1,9 @@
+@echo off
+chcp 65001 >nul
+echo 正在使用 PowerShell 执行 start.ps1...
+powershell.exe -ExecutionPolicy Bypass -File "%~dp0start.ps1"
+if %ERRORLEVEL% NEQ 0 (
+ echo 执行失败,错误代码: %ERRORLEVEL%
+ pause
+)
+