How do I update an Environment Variable in a Visual Studio Deployment Project - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:46:24Zhttp://stackoverflow.com/feeds/question/223438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project1How do I update an Environment Variable in a Visual Studio Deployment ProjectAdam Tegen2008-10-21T20:43:52Z2009-10-20T21:45:34Z
<p>I would like to append a path to the PATH environment variable in a Visual Studio 2005 deployment project. How does one do this?</p>
http://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project/223529#2235290Answer by LanceSc for How do I update an Environment Variable in a Visual Studio Deployment ProjectLanceSc2008-10-21T21:13:13Z2008-10-21T21:13:13Z<p>You need to add a row to the Environment Table of the MSI file to do this. You can find information on that table here, <a href="http://msdn.microsoft.com/en-us/library/aa368369(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa368369(VS.85).aspx</a>. You can use Orca to do this or automate the procedure with some VB Script. The platform SDK contains the VB script file, WiRunSQL.vbs that can you used to automate build actions for your program.</p>
http://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project/807650#8076501Answer by Dan Kellett for How do I update an Environment Variable in a Visual Studio Deployment ProjectDan Kellett2009-04-30T15:55:14Z2009-04-30T15:55:14Z<p>Use the registry editor view in the setup project and create the path key in the appropriate place
ie.
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment
and create a string value called "Path"
and enter this as your value:
"[%Path];[TARGETDIR]"</p>
<p>[%Path] is a placeholder for the original string in the existing Path value.</p>
http://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project/1597515#15975150Answer by Aaron Darling for How do I update an Environment Variable in a Visual Studio Deployment ProjectAaron Darling2009-10-20T21:45:34Z2009-10-20T21:45:34Z<p>There are problems with the above mentioned approach of using the registry editor view and creating a key called PATH with value "[%Path];[TARGETDIR]". While the method works fine when installing the program, the default behavior during uninstall is to delete the entire PATH variable, not just the added [TARGETDIR]. I have not found a way to disable this behavior, although it seems like some conditional behavior might be possible.</p>