Created
June 12, 2018 07:58
-
-
Save paulomorgado/6f7724227f518d44c0d4ce1d07baa2be to your computer and use it in GitHub Desktop.
Developer PowerShell for VS2017
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
cmd.exe /c '"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat" && set' | | |
Out-String -Stream | Select-String -Pattern '^(.*?)=(.*)$' | | |
ForEach-Object { Set-Content -Path "env:$($_.Matches.Groups[1].Value)" -Value $_.Matches.Groups[2].Value } | |
Import-Module posh-git | |
Set-PSReadlineOption -HistoryNoDuplicates -ShowToolTips -BellStyle Visual |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment