How do I update an Environment Variable in a Visual Studio Deployment Project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:46:24Z http://stackoverflow.com/feeds/question/223438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project 1 How do I update an Environment Variable in a Visual Studio Deployment Project Adam Tegen 2008-10-21T20:43:52Z 2009-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#223529 0 Answer by LanceSc for How do I update an Environment Variable in a Visual Studio Deployment Project LanceSc 2008-10-21T21:13:13Z 2008-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#807650 1 Answer by Dan Kellett for How do I update an Environment Variable in a Visual Studio Deployment Project Dan Kellett 2009-04-30T15:55:14Z 2009-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#1597515 0 Answer by Aaron Darling for How do I update an Environment Variable in a Visual Studio Deployment Project Aaron Darling 2009-10-20T21:45:34Z 2009-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>