mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-13 09:58:54 +00:00
14 lines
308 B
Batchfile
14 lines
308 B
Batchfile
@echo off
|
|
|
|
if /i "%processor_architecture%"=="x86" (
|
|
start .\tools\ConEmu\ConEmu.exe
|
|
) else if /i "%processor_architecture%"=="amd64" (
|
|
if defined processor_architew6432 (
|
|
start .\tools\ConEmu\ConEmu.exe
|
|
) else (
|
|
start .\tools\ConEmu\ConEmu64.exe
|
|
)
|
|
)
|
|
|
|
@echo success
|