Location of "Microsoft Visual C++ Redistributable 2019" dlls

Dmitry Senin 6 Reputation points
2021-01-06T11:44:24.277+00:00

I would like to ship DLLs from "Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019" with my application but cannot find them on my PC.

I tried different locations from:

  1. https://video2.skills-academy.com/en-us/cpp/windows/determining-which-dlls-to-redistribute?view=msvc-160
  2. https://video2.skills-academy.com/en-us/cpp/windows/determining-which-dlls-to-redistribute?view=msvc-160
  3. I found something locally in "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE" but not sure if this is the correct ones

I even installed the package on a clean box to try to detect where those are placed but with no luck.

What is the right folder where I can find the dlls?

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,869 questions
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
{count} votes

1 answer

Sort by: Most helpful
  1. Castorix31 83,101 Reputation points
    2021-01-06T12:21:16.02+00:00

    DLLs are copied into %WINDIR%\System32, so you don't redistribute them individually
    You redistribute them with vc_redist.x86.exe, vc_redist.x64.exe, ... (The latest supported Visual C++ downloads)