如何有效地找到此 MS 补丁的合并模块
Microsoft 已发布此补丁:
在哪里可以找到合并模块为此(如果有的话)。我应该寻找一个标准位置来查找这些东西吗?
Microsoft have published this patch:
Where can I find the merge module for this (if any). Is there a standard location I should look in to find these things?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安装 此更新到您的 Visual Studio 2008 SP1,它会将相应的合并模块更新为您链接到的更新中提供的运行时版本。合并模块位于 C:\Program Files\Common Files\Merge Modules 中。
您链接到的更新适用于最终用户,而不是开发人员,因此它们不包含合并模块。另一方面,Visual Studio 的更新确实包含更新的合并模块,因为它们针对的是开发人员。
Install this update to your Visual Studio 2008 SP1, it will update the corresponding merge modules to the versions of the runtime delivered in the update you link to. The merge modules are in
C:\Program Files\Common Files\Merge Modules
.The updates you link to are intended for the end-users, not developers, hence they don't contain the merge modules. The updates to the Visual Studio, on the other side, do contain the updated merge modules because they target developers.
Microsoft 发布了非常非常少的合并模块...并且没有一个像 Windows Update 补丁一样工作,因为它们的补丁通常使用与 Windows Installer 不同的内容。所以,不幸的是,我非常怀疑你能找到一个。
我不建议尝试将此补丁放入合并模块中。相反,您可以使用诸如
patch.exe /quiet /passive /norestart /o /n /f > 之类的命令行为可再发行组件和补丁创建自己的简单脚本安装。 patch.log
-- 请参阅知识库文章 #262841< /a> 了解更多详细信息。Microsoft has released very, very few merge modules... and none that work like a Windows Update patch, because their patches generally use different guts than Windows Installer. So, unfortunately, I highly doubt you'll find one.
And I wouldn't recommend trying to make this patch into a merge module. Instead, you could create your own simple scripted install for both the redistributable and then the patch with a command-line like
patch.exe /quiet /passive /norestart /o /n /f > patch.log
-- see KB article #262841 for more details.