Visual C 2019 Redistributable | HOT · 2027 |
If you try to launch an application without the correct redistributable, you will see specific error messages:
If you see VCRUNTIME140.dll (note the "140" – that corresponds to Visual Studio 2015/2017/2019), you specifically need the Visual C++ 2019 (or 2015-2022) Redistributable. visual c 2019 redistributable
As of recent years, Microsoft has released Visual C++ 2022 Redistributable. While newer, it is backwards compatible with 2019 apps. However, many older games and enterprise apps specifically check for the 2019 version string. If you uninstall 2019 and rely only on 2022, some installers might still prompt you to install the older version. If you try to launch an application without
Starting with Visual Studio 2015, Microsoft made a promise to developers: Binary compatibility. This means that runtime libraries from Visual Studio 2015, 2017, and 2019 are all versioned at 14.x (e.g., version 14.0, 14.10, 14.20, 14.29). If you see VCRUNTIME140
In practice, this means:
However, practical wisdom dictates you install all three. Why? Because even though they are binary compatible, some installers check for their exact major.minor version. To avoid the infamous “Side-by-side configuration is incorrect” error, install the specific redistributable the program requests.
Cause: A 64-bit program is looking for the 64-bit runtime, but it's either not installed or Windows cannot find it in the PATH.
Fix: