13 lines
488 B
Batchfile
13 lines
488 B
Batchfile
ECHO OFF
|
|
SET inputFilePath=%~dp0%1".SLDPRT"
|
|
|
|
SET outFilePath=%~dp0%1".step"
|
|
|
|
PowerShell -NoProfile -ExecutionPolicy Bypass -File "%~dp0export-file.ps1" %inputFilePath% %outFilePath%
|
|
|
|
SET inputFilePath=%~dp0%1".SLDDRW"
|
|
SET outFilePath=%~dp0%1".pdf"
|
|
PowerShell -NoProfile -ExecutionPolicy Bypass -File "%~dp0export-file.ps1" %inputFilePath% %outFilePath%
|
|
SET outFilePath=%~dp0%1".dxf"
|
|
PowerShell -NoProfile -ExecutionPolicy Bypass -File "%~dp0export-file.ps1" %inputFilePath% %outFilePath%
|