Setting windows powershell path variable - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:41:10Zhttp://stackoverflow.com/feeds/question/714877http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/714877/setting-windows-powershell-path-variable3Setting windows powershell path variableVasil2009-04-03T17:19:35Z2009-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#7149185Answer by JaredPar for Setting windows powershell path variableJaredPar2009-04-03T17:35:44Z2009-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#13337172Answer by mloskot for Setting windows powershell path variablemloskot2009-08-26T10:22:26Z2009-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>