有谁知道部署 Visual C++ 有什么麻烦吗?使用 XCopy 的库?

发布于 2024-08-20 18:09:40 字数 216 浏览 2 评论 0原文

我们需要部署 Visual C++ 库。我们尝试使用合并模块部署此库,但卸载变得太慢(大约 10-20 分钟)。因此,我们决定使用 XCopy 方法 部署此库。有人知道使用 XCopy 部署 Visual C++ 库有什么麻烦吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮了一弯 2024-08-27 18:09:40

对于私有 Visual C++ 运行时库,它们不会通过 Windows 更新进行更新,因此这最终可能会带来安全漏洞。

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

In the case of private Visual C++ runtime libraries they won't be updated by windows update so this eventually could bring security breach.

Another problem with deployment is that different versions of Windows search libraries in different folders. Windows 2000 expects dlls to be in application folder but since Vista and later on vc runtime libraries should be in Microsoft.VC90.CRT subfolder. It's not an issue if your app is for private or corporate use but should be considered when you have 'external' customers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文