I created an installer with burn to install the vcredist_x64.exe and vcredist_x32.exe before my app's msi's.
For vcredist_x64 I was using:
<PackageGroup Id="VD2012Crt">
<ExePackage
Name="vcredist_x64.exe"
DownloadUrl="http://go.microsoft.com/fwlink/?LinkID=266496&clcid=0x409"
... etc
However, that URL seems to have stopped working from Micosofts downlaod servers. Maybe they've deprecated it?
I thought the URL was correct as following from this page: http://msdn.microsoft.com/en-us/library/ms235316.aspx, it led me to look for packages here: "%WindowsSdkDir%\Bootstrapper\Packages". In that folder I found this file:
C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\Bootstrapper\Packages\vcredist_x64\en\package.xml
And that contains the URL I'm using.
Do you know of a more appropriate URL? Should I embed vcredist_x64.exe in my installer instead of using a URL, but that would increase the size of my installer which my customer wants to be small?
Thanks.
Related: