On 10/22/2013 3:00 PM, Tony wrote:
>   <Target Name="SignCabs">
>      <Exec Command="Signtool.exe sign /a &quot;%(SignCabs.FullPath)&quot;" />
>    </Target>

To avoid the signature going invalid when the certificate expires, you 
probably want to add a timestamp:

<Exec Command="Signtool.exe sign /a &quot;%(SignCabs.FullPath)&quot;" /t 
http://timestamp.verisign.com/scripts/timstamp.dll />

(that isn't a typo - "timstamp.dll" is 8.3 format).
If you have a Globalsign cert, you might want to use timestamp.globalsign.com 
instead etc.

And for the MSI file, you might want to add:

/n text-that-should-appear-in-UAC-elevation-prompt-description

Otherwise, the description will contain a randomly-generated filename.

-- 
Bruce Cran


------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to