-1

After probably the installation of an outdated program messsed up some libraries, the window "Missing Api-ms-win-core-crt-l1-1-0.dll" popped when starting particular programs.

As solution the installation of "Microsoft Visual C++ 2015 Redistributable (vc_redist.x64.exe and vcredist_x86.exe)" is recommended. However, this installation permanently failed.

Also the installation of Visual Studio 2015 itself failed, because the necesssary KB2999226 also faild to install. Manual installation of KB2999226

wusa.exe Windows6.1-KB2999226-x64.msu /extract:XXXX

DISM.exe /Online /Add-Package /PackagePath:XXXX\Windows6.1-KB2999226-x64.cab

seemed to work (package successfuly added) but did not help. Visual Studio 2015 and vc_redist.x64.exe failed to install.

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
helpuser100
  • 29
  • 1
  • 2
  • 1
    Don't put answers in the question, or [solved] in the title; if you have answered the question yourself, *write an actual answer*. – jonrsharpe Oct 27 '15 at 09:12
  • This problem cost me a workday. I spent extra time to sign up here and to share the solution, so that others benefit from it. Do you think that rating such efforts as unhelpful encourags others to share there solutions as well? – helpuser100 Oct 27 '15 at 09:20
  • Perhaps not. It seems to have encouraged you to do at least half the job of fixing it, though. – jonrsharpe Oct 27 '15 at 09:27
  • Sending a message or a comment would have been a better way to achive that. We all do that to help others and we do that voluntarily. It's not motivating to be downrated just when tryong to help. – helpuser100 Oct 27 '15 at 09:37
  • ...I *did* comment, not that anyone's required to do so. If you want to avoid down votes, read the material in the Help Center *before* posting. – jonrsharpe Oct 27 '15 at 10:12

1 Answers1

1

Here is what finally helped: Re-Installation of SP 1 for Windows 7.

As a matter of fact my system already had SP 1 for Win 7 installed. But obviously some fixes seemded to be broken. Re-Installation (Repair) of SP 1 for Win 7 helpd. After that, KB2999226 still did not install, but vc_redist.x64.exe and vcredist_x86.exe did and the "Api-ms-win-core-crt-l1-1-0.dll" problem disappeared.

To be on the safe side try this:

Re-Install SP 1 for Win 7
manually install KB2999226

wusa.exe Windows6.1-KB2999226-x64.msu /extract:XXXX DISM.exe /Online /Add-Package /PackagePath:XXXX\Windows6.1-KB2999226-x64.cab

Repair: vc_redist.x64.exe and vcredist_x86.exe

If that doesn't work just try steps 1. and 3. (leave manual installation of KB2999226 out)

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
helpuser100
  • 29
  • 1
  • 2
  • *"If that doesn't work just try steps 1. and 3."* - so why include step 2? Do you know how, why or even *if* these steps actually solve the problem? – jonrsharpe Oct 27 '15 at 09:32