Hi,

I'm creating a nightlybuild system for our company and have a problem on the env.var PATH.
It seems to be that the env.var PATH is limited to 1023 characters after expanding. We are working with some thirdparty packages and I add the directories with the DLL's of these packages to the PATH but this is more than 1023 characters!

e.g.

set DotrixDir = "c:\temp"
set DotrixPath = c:\xerces\....\bin\debug; c:\rogue\...\bin\debug; %DotrixDir% \...\bin\debug;......
set Path = ....;%DotrixPath%

becomes after expanding

Path = ...;c:\xerces\....\bin\debug; c:\rogue\...\bin\debug; c:\temp\...\bin\debug;......


Does someone knows how to alter the maximum length of a path!