Peter Hull wrote > > To sign the bundle and bundle engine you need to add the following to your > .wixproj: > Add <SignOutput>true</SignOutput> to a PropertyGroup > Implement the targets like this: > <Target Name="SignBundleEngine"> > <SignFile TimestampUrl="..." CertificateThumbprint="..." > SigningTarget="@(SignBundleEngine)" /> > </Target> > <Target Name="SignBundle" > > <SignFile TimestampUrl="..." CertificateThumbprint="..." > SigningTarget="@(SignBundle)" /> > </Target> > You need to put these _after_ the <Import Project="$(WixTargetsPath)" /> > > Alternatively you can use <Exec Command='signtool.exe sign ..."' /> for > more control. >
I'm trying to get bundle signing to work and I'm having some issues. I've added <SignOutput>true</SignOutput>, as mentioned. I've also overridden SignBundleEngine and SignBundle, which appear to be working because burn.exe and my bundle do have digital signatures attached. However, when I attempt to install I get the following error: "Setup failed while installing the MSIs. Unspecified error". This occurs after I receive the UAC prompt. I'm obviously doing something wrong, but I'm not sure what. Any help would be greatly appreciated. Paul -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Signing-the-burn-bootstrapper-tp7174715p7221603.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ WiX-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wix-users

