Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Solved! Go to Solution.
I'm not sure I fully understand your question. What we do for libraries and templates is to declare them in the config.pro like:
template_sheetmetalpart $LIB\pro_lib\Templates\Creo 2.0\mm_sheetmetal.prt.
Another thing that may help you is to declare a system variable and then call it, assuming you are working on a command window:
set COMMON=%PRO_ROOT%\Creo 2.0\Common Files\%DATECODE%
copy "%COMMON%\text\config.pro"
Note that the call is within "" so the entire string is considered as one text.
I hope it helps.
I'm not sure I fully understand your question. What we do for libraries and templates is to declare them in the config.pro like:
template_sheetmetalpart $LIB\pro_lib\Templates\Creo 2.0\mm_sheetmetal.prt.
Another thing that may help you is to declare a system variable and then call it, assuming you are working on a command window:
set COMMON=%PRO_ROOT%\Creo 2.0\Common Files\%DATECODE%
copy "%COMMON%\text\config.pro"
Note that the call is within "" so the entire string is considered as one text.
I hope it helps.