E
E
Eugene Ordinary2017-03-11 22:22:22
C++ / C#
Eugene Ordinary, 2017-03-11 22:22:22

How to solve the problem "Starting is not possible. Missing MSVCP140.dll"?

Wrote the program in Visual Studio. It works on my computer. Apparently this dll was installed with VS. But for other people, the program does not start. Is it possible to somehow compile the program so that it does not require this library?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
R
Rou1997, 2017-03-11
@evgeniy8086

Three ways:
1) Using DependencyWalker, find the exact list of required DLLs, find it in your own place and add it to EXE.
2) Install the required VC++ Redist.
3) Static linking.

N
nirvimel, 2017-03-11
@nirvimel

You need to install Visual C++ Redistributable for Visual Studio 2015 .

A
Andrey Burov, 2017-03-11
@BuriK666

you can put it next to the .exe file and everything will work.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question