Created
October 28, 2019 13:35
-
-
Save ArthurHNL/80230904e869946acf4bfe1d3ebaf222 to your computer and use it in GitHub Desktop.
A few lines of powershell code that enters the Visual Studio Developer 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
$vsPath = &(Join-Path ${env:ProgramFiles(x86)} "\Microsoft Visual Studio\Installer\vswhere.exe") -property installationpath | |
Import-Module (Join-Path $vsPath "Common7\Tools\Microsoft.VisualStudio.DevShell.dll") | |
Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment