14 lines
308 B
Batchfile
Raw Permalink Normal View History

2025-04-08 18:46:12 +08:00
@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