The NSIS script used to update the environment variable (EnvVarUpdate) has the following warning [1]:<div><br></div><div><div>"Warning this code will replace paths rather than append if the existing path exceeds the maximum string length in the NSIS build you are using. Some setup crash can also occurs."</div>
</div><div><br></div><div>The default maximum string length is 1024.  There is a special build of NSIS [2] which has a larger maximum string length (8192) that would help avoid this problem.  There is also a patch [1] for EnvVarUpdate that detects if the PATH will be overwritten instead of appended to and tells the user to update their PATH manually.</div>
<div><br></div><div>I've seen this issue complained about before online but hadn't experienced it myself until recently.  It can be a rather frustrating problem to experience as restoring your PATH isn't trivial because there is no way (that I know of) to look at what your PATH was before it was destroyed and the PATH is often updated by installers (as it is with dmd).</div>
<div><br></div><div>[1] <a href="http://nsis.sourceforge.net/Environmental_Variables:_append,_prepend,_and_remove_entries#Warning">http://nsis.sourceforge.net/Environmental_Variables:_append,_prepend,_and_remove_entries#Warning</a></div>
<div>[2] <a href="http://nsis.sourceforge.net/Special_Builds">http://nsis.sourceforge.net/Special_Builds</a></div><div><br></div><div>Regards,</div><div>Brad Anderson</div>