Skip to content

Instantly share code, notes, and snippets.

@RhysC
Created July 16, 2013 08:15
Show Gist options
  • Save RhysC/6006795 to your computer and use it in GitHub Desktop.
Save RhysC/6006795 to your computer and use it in GitHub Desktop.
Make visual studio command prompt available in powershell : just jam this into your profile (http://stackoverflow.com/questions/2124753/how-i-can-use-powershell-with-the-visual-studio-command-prompt)
#Set environment variables for Visual Studio Command Prompt
pushd 'c:\Program Files (x86)\Microsoft Visual Studio 11.0\VC'
cmd /c "vcvarsall.bat&set" |
foreach {
if ($_ -match "=") {
$v = $_.split("="); set-item -force -path "ENV:\$($v[0])" -value "$($v[1])"
}
}
popd
write-host "`nVisual Studio 2012 Command Prompt variables set." -ForegroundColor Yellow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment