Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
I was wondering if like with Creo Parametric if there was a way to administer settings from a central location with Creo Elements Direct? Does anyone have any documentation on recommended administration techniques?
Thanks in advance,
Mike
Solved! Go to Solution.
We use a batch file to start Creo Elements/Direct and set the following pointers to load a company default configuration and a user configuration.
Some settings are locked by the company settings and the user settings will not overwrite them.
set SDSITECUSTOMIZEDIR= "Network Shared Location with read only permissions"
set SDUSERCUSTOMIZEDIR="Network Shared Location with user change permissions"
"C:\Program Files\PTC\Creo Elements\Direct Modeling 19.0\SD.exe" -e SDLANG=english "C:\Program Files\PTC\Creo Elements\Direct Modeling 19.0\binx64\SolidDesigner.exe"
You can search the help for "General Customization Concepts Guide"
We use a batch file to start Creo Elements/Direct and set the following pointers to load a company default configuration and a user configuration.
Some settings are locked by the company settings and the user settings will not overwrite them.
set SDSITECUSTOMIZEDIR= "Network Shared Location with read only permissions"
set SDUSERCUSTOMIZEDIR="Network Shared Location with user change permissions"
"C:\Program Files\PTC\Creo Elements\Direct Modeling 19.0\SD.exe" -e SDLANG=english "C:\Program Files\PTC\Creo Elements\Direct Modeling 19.0\binx64\SolidDesigner.exe"
You can search the help for "General Customization Concepts Guide"
Thanks for the help.