我使用exePackage属性下载exe pacakge - 实际上是来自microsoft的VSTO运行时。
它无法获得包裹。
我相信这是将其添加到CHAIN的正确方法
<ExePackage Id="VSTORuntime" SourceFile="vstor_redist.exe" Permanent="yes" Vital="yes" Cache="no" Compressed="no"
DownloadUrl="http://go.microsoft.com/fwlink/?LinkId=158917"
PerMachine="yes"
InstallCommand="/q /norestart"
DetectCondition="VSTORFeature"
InstallCondition="NOT VSTORFeature OR NOT (VSTORVersionV4R >=v10.0.40303) OR NOT (VSTORVersionV4 >=v10.0.21022)" />
这是日志文件部分。它大约做了三次。
[0D98:06A8][2013-07-22T11:47:31]w343: Prompt for source of package: VSTORuntime, payload: VSTORuntime, path: F:\vstor_redist.exe
[0D98:06A8][2013-07-22T11:47:31]i338: Acquiring package: VSTORuntime, payload: VSTORuntime, download from: http://go.microsoft.com/fwlink/?LinkId=158917
[16A0:0BE4][2013-07-22T11:47:37]e000: Error 0x80070490: Failed to find expected public key in certificate chain.
[16A0:0BE4][2013-07-22T11:47:37]e000: Error 0x80070490: Failed to verify expected payload against actual certificate chain.
[16A0:0BE4][2013-07-22T11:47:37]e000: Error 0x80070490: Failed to verify signature of payload: VSTORuntime
答案 0 :(得分:1)
我认为您需要在RemotePayload标记中指定Certificate密钥,如下所示:
<ExePackage Id="VSTORuntime" SourceFile="vstor_redist.exe" Permanent="yes" Vital="yes" Cache="no" Compressed="no"
DownloadUrl="http://go.microsoft.com/fwlink/?LinkId=158917"
PerMachine="yes"
InstallCommand="/q /norestart"
DetectCondition="VSTORFeature"
InstallCondition="NOT VSTORFeature OR NOT (VSTORVersionV4R >=v10.0.40303) OR NOT (VSTORVersionV4 >=v10.0.21022)">
<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" />
</ExePackage>
这只是一个想法...... 或尝试使用fiddler来查找他们是否是错误404或类似的东西......
答案 1 :(得分:1)
当使用一个版本的exe软件包编译bootstrapper软件包时遇到此问题,但是当您尝试运行它时,另一个版本与安装程序可执行文件并列。我怀疑Burn在编译软件包时会自动从源文件中提取证书信息。
例如,如果您的Setup.exe
文件位于C:\Downloads
且C:\Downloads
也包含vstor_redist.exe
版本,该版本与您构建{{1}时的版本不同,你会看到这个错误。您可以通过从Setup.exe
删除vstor_redist.exe
来解决此问题 - C:\Downloads
然后将关闭并从您指定的网址下载正确的版本。