Reputation:
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?
Upvotes: 1
Views: 156
Reputation: 11878
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.
Upvotes: 1
Reputation: 28110
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.
Upvotes: 0