Where, oh where, do you find the full URL, CertificatePublicKey & CertificateThumbprint and SHA-1 hash values for the various Windows Installer 4.5 redistributables (i.e. WindowsXP-KB942288-v3-x86.exe, WindowsServer2003-KB942288-v4-x86.exe, WindowsServer2003-KB942288-v4-x64.exe, Windows6.0-KB942288-v2-x86.msu, etc.)?
I need these details for the Wix Burn "RemotePayload" element in order to perform a silent prerequisites-step download and install of Windows Installer 4.5 when it is missing from target systems. A good example is given in this https://stackoverflow.com/a/11308837/2430722, which was posted in answer to a different question:
<ExePackage Id="WinXP_x86"
Cache="no"
Compressed="no"
PerMachine="yes"
Permanent="yes"
Vital="yes"
Name="redist\WindowsXP-KB942288-v3-x86.exe"
DownloadUrl="http://download.microsoft.com/download/2/6/1/261fca42-22c0-4f91-9451-0e0f2e08356d/WindowsXP-KB942288-v3-x86.exe"
InstallCondition="VersionNT=v5.1 AND NOT VersionNT64 AND VersionMsi < v4.5"
InstallCommand="/quiet /norestart">
<RemotePayload ProductName="Windows Installer 4.5"
Description="Windows Installer 4.5 Setup"
CertificatePublicKey="F321408E7C51F8544B98E517D76A8334052E26E8"
CertificateThumbprint="D57FAC60F1A8D34877AEB350E83F46F6EFC9E5F1"
Hash="86E1CC622DBF4979717B8F76AD73220CDB70400B"
Size="3327000"
Version="4.5.0.0" />
<ExitCode Behavior="forceReboot"/>
</ExePackage>
I have searched and searched and can't find where this information is made available. Can anyone help?