Everytime I create any C++ application in my VS2010, It runs fine on my machine but if I run it on different machine, It starts with this error. Error goes if I copy msvcp100.dll in System Folder then it shouts for some other DLL. It requires some 5-6 different DLLs.
Most irritating part is even if I write a simple Console based Addition program, It gives this error.(I should not but)I would have agree if I design some fancy forms and all... But for simple Addition program????
By default, MSVC projects are set to link against the dynamic run time library which generates a dependency on the visual C++ run time redistributable. As you have already found out, this dependency is not guaranteed so your install utility has to install the visual c++ run time first.
Using the compiler options to change the runtime library worked for me ("Configuration Properties"/"C/C++"/"Code Generation". In the item labelled "Runtime Library", select "Multi Threaded (/MT)" for the release version and "Multi Threaded Debug (/MTd)" for the debug version). I did have to do both the debug and the release to get the release to work. Don't know why (it is possible that I did not do it correct the first time).
Hi,
I'm trying to run WebAccessControlViewer (extracted from urlviewer_forcepoint.zip) on a Windows 2019 server so I can see what URLs are getting blocked.
However - when I run it, I get the following error message
"The code execution cannot proceed because MSVCP100.dll was not found. Reinstalling the program may resolve the issue."
So reinstalling isn't an option as it's a stand alone executable. The DLL doesn't appear to exist on the server, so it's not as though I can reregister it.
It works on W10 22H2, and 2012 R2.
What am I missing?
Many thanks.
Download the Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package MFC Security Update and run it. This will replace/restore the msvcp100.dll with the most recent copy provided by Microsoft.
Mr or Ms r...@kaufmann.dk is got a point here. The file missing is part of Microsoft Visual C++ library.
Try the solution provided on previous message on this thread, and if that does not solve the issue, please contact the Tech support for data collecting in order to know the exact problem on your device.