加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
win_env.bat 505 Bytes
一键复制 编辑 原始数据 按行查看 历史
alan 提交于 2023-12-22 23:02 . init: 1.0.0
@echo off
rem SPDX-License-Identifier: GPL-2.0+
rem
if "%CD%"=="C:\Windows\system32" (
echo Current user is administrator, need change path to ZX-RTT ...
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化