Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bojanrajkovic/e8d18a543dc5f358133d4e8bcfa66f34 to your computer and use it in GitHub Desktop.
Save bojanrajkovic/e8d18a543dc5f358133d4e8bcfa66f34 to your computer and use it in GitHub Desktop.
```
pushd "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools"
cmd /c "VsDevCmd.bat&set" |
foreach {
if ($_ -match "=") {
$v = $_.split("="); set-item -force -path "ENV:\$($v[0])" -value "$($v[1])"
}
}
popd
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment