Reputation: 1845
I'm currently facing some issues with the latest Visual Studio 2019 version (16.7.0) and I want to go back to a previous version, specifically 16.6.2. However on the VS website I can't find a place where to download a specific version of Visual Studio, so is there a way (even non official) to download this version?
Upvotes: 17
Views: 19148
Reputation: 2256
For anyone else in same/similar boat as me - I needed Visual Studio 2019 Community in 2024 - these two below options worked for me. Note - I have a feeling someday one or both of these solutions will stop working if MS disables them somehow - but they're still working as of 5/2024.
As of today appears still available for download: https://docs.microsoft.com/nb-no/visualstudio/releases/2019/system-requirements
# A) Specify the download URL for the Visual Studio 2019 Community edition offline installer
$url = "https://aka.ms/vs/16/release/vs_community.exe"
# B) Specify the path where you want to save the downloaded installer
$outputPath = "C:\temp\vs_community.exe"
# C) Download the file using Invoke-WebRequest
Invoke-WebRequest -Uri $url -OutFile $outputPath
(This is meant to be done after Part 1 above. Note: I didn't really need this but started it and it seems to work)
# (Must be in same folder as vs_community.exe)
# A) Specify where to put *ALL* the files for the full offline installer (?)
$layoutOutputPath = "C:\temp\VS2019CommunityLayout"
# B) Start the (long?) download process
Start-Process -FilePath "vs_community.exe" -ArgumentList "--layout $layoutOutputPath" -Wait
(Shout out to this guy on Reddit for small installer tip)
Upvotes: 7
Reputation: 2159
In case you need to install a specific version of the Community Edition you can download VS 20XX Professional Edition with the desired version and then, during installation, just select the Community Edition.
Steps:
Upvotes: 5
Reputation: 43
you can download the older version of Visual studio 2019: https://learn.microsoft.com/en-us/visualstudio/releases/2019/history#installing-an-earlier-release
Upvotes: 0
Reputation: 5580
Officially, Microsoft provides older installer for VS 2019, but only the Enterprise, Professional, and Build Tools. Meanwhile Community edition
is only supported on the recommended latest release of the latest minor version of Visual Studio
So if you expect to be needing VS Community older version in the future, I suggest backing up the offline installer when they're released.
Upvotes: 12