As already explained here https://stackoverflow.com/a/10406852/1758762 ,
The debug version is not redistributable, so it's not as simple as
"packaging" it with your executable, or zipping up those DLLs.
Check to be sure that you're compiling all components of your
application in "release" mode, and that you're linking the correct
version of the CRT and any other libraries you use (e.g., MFC, ATL,
etc.).
You will, of course, require msvcr100.dll (note the absence of the d
suffix) and some others if they are not already installed. Direct your
friends to download the Visual C++ 2010 Redistributable (or x64), or
include this with your application automatically by building an
installer.