1

We need to deploy Visual C++ library. We have tried deploy this libraries using Merge Modules, but uninstall became too slow (about 10-20 minutes). So we've decided to deploy this libraries using XCopy method. Does anybody know any troubles with deploying Visual C++ library using XCopy?

4

1 回答 1

0

在私有 Visual C++ 运行时库的情况下,它们不会被 Windows 更新更新,因此这最终可能会带来安全漏洞。

部署的另一个问题是不同版本的 Windows 在不同文件夹中搜索库。Windows 2000 期望 dll 位于应用程序文件夹中,但由于 Vista 及更高版本的 vc 运行时库应位于 Microsoft.VC90.CRT 子文件夹中。如果您的应用程序是供私人或公司使用的,这不是问题,但当您有“外部”客户时应该考虑。

于 2010-02-05T17:01:17.270 回答