I\'ve built a c++ application with Visual Studio 2012. I\'ve tried to get it to run on another machine without VS2012 installed but it will not run. It keeps looking for msv
The d.dll suffix means debug version of C++ runtime DLL. This means your exe is debug build, which requires MSVCR110d.dll.
d.dll
MSVCR110d.dll
You should deploy release build of your exe, which requires MSVCR110.dll.
MSVCR110.dll
Ask the user to install VC2012 runtime redistributable, MSVCR110.dll will be installed.