-
-
Save sgeto/5433d54027f33015ccbfbb0f1f6937da to your computer and use it in GitHub Desktop.
Visual Studio 2013 developer prompt for PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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