Setting windows powershell path variable - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:41:10Z http://stackoverflow.com/feeds/question/714877 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/714877/setting-windows-powershell-path-variable 3 Setting windows powershell path variable Vasil 2009-04-03T17:19:35Z 2009-08-26T10:22:26Z <p>So I've found out that setting the PATH environment variable affects only the old command prompt, powershell seems to have different environment settings. How do I change the environment variables for powershell (v1)?</p> <p>Note:</p> <p>I want to make my changes permanent, so I don't have to set it every time I run powershell. Does powershell have a profile file? Something like bash profile on unix?</p> http://stackoverflow.com/questions/714877/setting-windows-powershell-path-variable/714918#714918 5 Answer by JaredPar for Setting windows powershell path variable JaredPar 2009-04-03T17:35:44Z 2009-04-03T17:35:44Z <p>Changing the actual environment variables can be done by using the env: namespace / drive info. For example this code will update the path environment variable</p> <pre><code>$env:Path = "SomeRandomPath"; </code></pre> <p>There are ways to make environment settings permanent but if you are only using them from PowerShell, it's probably a lot better to use your profile to initiate the settings. On startup, powershell will run any .ps1 files it finds in the WindowsPowerShell directory under my documents. Typically you have a profile.ps1 file already there. The path on my computer is </p> <pre><code>c:\Users\JaredPar\Documents\WindowsPowerShell\profile.ps1 </code></pre> http://stackoverflow.com/questions/714877/setting-windows-powershell-path-variable/1333717#1333717 2 Answer by mloskot for Setting windows powershell path variable mloskot 2009-08-26T10:22:26Z 2009-08-26T10:22:26Z <p>If you need to modify PATH environment variable temporarily, some time during PowerShell session, you can do it this way:</p> <pre><code>$env:Path = $env:Path + ";C:\Program Files\GnuWin32\bin" </code></pre>