This post is to collect all the VC++ issues I encountered and the solutions to them
1. Issue:
I built a VC++ app as unmanaged code using VS2010, and deployed it to a Windows 2003 server. But it failed to start and return error code "128" which means no child process to wait. After investigation, I found that the server didn't have VC++ 2010 Redistributable Package (x86) installed.
http://www.microsoft.com/en-us/download/details.aspx?id=5555
Resolution:
Install the VC++ 2010 Redistributable Package (x86) on the server.
2. to add...

本文介绍了一种在Windows 2003服务器上部署使用Visual Studio 2010构建的VC++未托管代码应用程序时遇到的问题及解决方案。部署失败并返回错误代码128,原因是缺少VC++ 2010 Redistributable Package (x86),通过安装该运行库包解决了问题。
4816

被折叠的 条评论
为什么被折叠?



