I've tried to set EGTMP, TEMP and TMP using Windows Environment Variables but EG didn't picked it up. Only way for EG to change TEMP folders was to put it in the SEGuide.exe.config. Maybe it should be put there but with specific type for SAS.EG.Scripting but I cannot find any materials regarding this config file. I am thinking about something like this: <configSections> <section name="Environment1" type="SAS.EG.Configuration.EnvironmentSection, SAS.EG.Scripting"/> </configSections> and then add section <Environment1> <Variables> <add name="EGTMP" value="path" /> <add name="TEMP" value="path" /> <add name="TMP" value="path" /> </Variables> </Environment1> Tried different combination of types but it didn't work.
... View more