Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active June 11, 2021 02:31
Show Gist options
  • Save guitarrapc/928ecef212b182ae82f70b5067f1ec7c to your computer and use it in GitHub Desktop.
Save guitarrapc/928ecef212b182ae82f70b5067f1ec7c to your computer and use it in GitHub Desktop.
Get current installed Visual Studio version.
WHERE "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" >nul 2>&1 && (for /f "usebackq tokens=2*" %%A in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" ^| findstr DisplayVersion`) do set VS_VERSION=%%A) || (set VS_VERSION=NOT FOUND)
echo Visual Studio version %VS_VERSION%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment