2019-12-10

Fixing "The Application was Unable to Start Correctly (0xc000007b)" error


  1. Check if executable is 32-bit or 64-bit.
  2. Download http://www.dependencywalker.com of same type
  3. Open executable in Dependency Walker. Most likely there would be error(s), but it is not important. The important thing is list of DLLs:
Look at the "CPU" column for red text - this is missing DLL. In this case - vcruntime140.dll, part of Visual C++ 2015-2019 runtime for x86. Missing VC++ runtime libraries are quite often, in general, depending on dll number:
"80" -> VC++ redist 2005
"90" -> VC++ redist 2008
"100" -> VC++ redist 2010
"110" -> VC++ redist 2012
"120" -> VC++ redist 2013
"140" -> VC++ redist 2015 (or 2015-2019)

No comments:

Post a Comment