Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mapitman/b21297798599ba7c2146 to your computer and use it in GitHub Desktop.
Save mapitman/b21297798599ba7c2146 to your computer and use it in GitHub Desktop.
pushd 'c:\Program Files (x86)\Microsoft Visual Studio 12.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 2013 Command Prompt variables set." -ForegroundColor Yellow
# Enable git support via GitHub client
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment