After building exe using VS 2010 C++ missing MSVCP100.dll

前端 未结 4 410
面向向阳花
面向向阳花 2021-01-31 10:52

I have designed an application that requires no install and can be used by non-administrators. I would rather not lose this functionality but when I use the .exe on other comput

4条回答
  •  一向
    一向 (楼主)
    2021-01-31 11:47

    http://msdn.microsoft.com/en-us/library/ms235299.aspx

    Distributing apps that have been compiled with Visual C++ requires distributing the C++ runtime .dlls that your app uses. In your case, I assume you want to just distribute a folder, so follow the directions (appropriately modified for your app) here:

    http://msdn.microsoft.com/en-us/library/dd293565.aspx

    Or just copy msvcp100.dll into your application's directory alongside the .exe and you'll be good to go.

    32-bit msvcp100.dll is in C:\Windows\SysWOW64\

    64-bit msvcp100.dll is in C:\Windows\System32\

提交回复
热议问题