Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Howdy Gurus,
We start Pro/E using batch files and desktop short cuts. The batch files copy the config.pro, config.sup and config.win files over to the users desktop machines into there ****\text directory. (example: E:\ptc\proewildfire4\text). The config.pro and config.sup files update and copy over just fine, but the config.win files do not. This file has been confusing, so we have been working around this by just physically copy/pasting into the preset working directories. Below is the text from the batch file, does anyone see where we are going wrong? Mostly what we update on the config.win file are new mapkeys.
echo Copying Config.sup
copy I:\Engineering\Drawings\ProE_Defaults\configs\Design_Engineer_Configs\config.sup E:\ptc\proeWildfire4\text\config.sup
echo Copying Config.pro
copy I:\Engineering\Drawings\ProE_Defaults\configs\Design_Engineer_Configs\config.pro E:\ptc\proeWildfire4\text\config.pro
echo Copying Config.win
copy I:\Engineering\Drawings\ProE_Defaults\configs\Design_Engineer_Configs\config.win E:\ptc\proeWildfire4\text\config.win
echo Copying com_splash.gif
Copy I:\Engineering\Drawings\ProE_Defaults\configs\splash_screens\com_splash.gif E:\ptc\proeWildfire4\text\resource\com_splash.gif
call E:\PTC\proeWildfire4\bin\proe.exe
Thanks,
James
Weeell...
In principle, copying the config.win file is OK.
The possible problem is, that the file in question has to be created starting from nothing:
Then You can copy it to <proe>/text at startup. Make sure, it's the only one there. Remember, config.win also has a version index, if multiple copies exist.
When changing the config.win template, proceed as above, but after 1. (and before 2.) copy the template to the working directory. Then start ProE.
Users still can change the config.win, which will then be stored in the working directory. This may not always work well when the template was changed, be aware of that.
BTW: We use that process for years now without major problems.