Files
luban-lite/win_env.bat
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

22 lines
569 B
Batchfile

@echo off
rem SPDX-License-Identifier: Apache-2.0
rem
rem Copyright (C) 2023-2024 ArtInChip Technology Co., Ltd
if "%CD%"=="C:\Windows\system32" (
echo Current user is administrator, need change path to Luban-Lite ...
cd /d %~dp0
)
if /i "%processor_architecture%"=="x86" (
start .\tools\env\tools\ConEmu\ConEmu.exe
) else if /i "%processor_architecture%"=="amd64" (
if defined processor_architew6432 (
start .\tools\env\tools\ConEmu\ConEmu.exe
) else (
start .\tools\env\tools\ConEmu\ConEmu64.exe
)
)
@echo success