Not able to download visual studio 2019 community

Aarti Jadhav 20 Reputation points
2024-06-12T20:56:36.4566667+00:00

I need VS 2019 community but Download option is not available. How can I install Visual Studio 2019? I have attached a snapshot of the same.

User's image

I have Windows 11 Home operating system, 64 bit operating system.

Visual Studio Setup
Visual Studio Setup
Visual Studio: A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
1,009 questions
0 comments No comments
{count} votes

Accepted answer
  1. Anna Xiu-MSFT 27,891 Reputation points Microsoft Vendor
    2024-06-13T02:27:43.76+00:00

    Hi @Aarti Jadhav, 

    Welcome to Microsoft Q&A! 

    Please directly download the VS 2019 Community from the link

    Sincerely,

    Anna


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


3 additional answers

Sort by: Most helpful
  1. Marcin Policht 18,345 Reputation points MVP
    2024-06-12T21:59:02.33+00:00

    Try https://visualstudio.microsoft.com/vs/older-downloads/


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


  2. Araibet Login 0 Reputation points
    2024-06-13T11:21:04.3133333+00:00

    Maybe you can try to access this link: https://visualstudio.microsoft.com/vs/older-downloads/

    If the answer is the right solution, please click "Accept Answer" and kindly upvote it.

    0 comments No comments

  3. Mike Taves 0 Reputation points
    2024-07-24T23:31:05.2333333+00:00

    You can download and use older MSVC toolsets from the current Visual Studio version.

    In your existing Visual Studio go to Tools > Get Tools and Features ...

    Then in the "Individual Components" tab, scroll down to the "Compilers, build tools, and runtimes". There are many possible things to select, but start with "MSVC v142 - VS 2019 C++ ..." for your desired platform. Click "Modify" to download and install them.

    Build tools like CMake can select this via (e.g.):

    cmake -G "Visual Studio 17 2022" -T v142 ..
    

    so the above uses Visual Studio 17 2022 to select a VS 2019 C++ compiler (whereas the default would normally choose toolset v143 for VS 2022 C++).

    0 comments No comments