首次提交: OnebotCatalog 项目代码与文档(含 NX 按需生成服务二期、后台、一键启动)

This commit is contained in:
wangruiguo
2026-09-03 17:55:45 +08:00
commit fafa86d3a6
241 changed files with 78656 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
@echo off
cd /d "%~dp0"
echo ==== step214ug.exe: export KC_master.prt to STEP ====
"C:\Program Files\Siemens\NX2506\NXBIN\step214ug.exe" "KC_master.prt" o="E2_export.stp" l="E2_export.log"
echo exit code = %ERRORLEVEL%
echo.
echo ==== output file ====
if exist "E2_export.stp" (
dir "E2_export.stp"
) else (
echo E2_export.stp NOT created
)
echo.
echo ==== log tail (solid count) ====
if exist "E2_export.log" (
findstr /C:"solid" /C:"Total" "E2_export.log"
) else (
echo no log file
)