10 lines
188 B
Batchfile
10 lines
188 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
setlocal
|
|
cd /d %~dp0
|
|
|
|
REM Launch via PowerShell to avoid encoding issues with Chinese characters
|
|
powershell -ExecutionPolicy Bypass -File start.ps1
|
|
|
|
timeout /t 3
|