I want to sign .exe files I produce. I already have code signing certificate, only last missing step is 'signtool.exe' (or any other tool that works and is free, preferrably command line so that it can be easily scripted).

My problem is that signtool.exe is part of .net framework sdk, which is huge download for this presumably small tool (selecting only win32 and .net tools gives me 0.5gb download). Is it possible to get this tool as a standalone download somewhere? (Google didn't help so far) Do you know some alternate small command line tool for signing .exe files?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 1 down vote accepted

As far as I know, the tool is free and redistribution is allowed.

I have just put the tool on my site for you - Tell me when you have downloaded and I will remove it.

Link

link|improve this answer
Thank you! I downloaded and it works fine. – Peter Štibraný Dec 12 '09 at 22:00
2  
If you plan to remove it, maybe it's better to remove your answer too ;-) – Peter Štibraný Dec 12 '09 at 22:01
Well, If it helped and you are going to mark as answer, I will leave it up for a while. – William Hilsum Dec 12 '09 at 22:23
I was relucant to mark as answer since it would not be useful for others, but I just did, so I hope you keep it there ;-) Thank you very much. – Peter Štibraný Dec 13 '09 at 8:19
@roddy - try now. – William Hilsum Jul 12 '11 at 18:54
show 2 more comments
feedback

The SignTool tool is a command-line tool that digitally signs files, verifies signatures in files, or time stamps files.

SignTool is available as part of the Windows SDK, download link and ducumentation here.

link|improve this answer
Thank you. My problem is that I only need single tool, but smallest download I was able to select via web-setup was about half gigabyte. – Peter Štibraný Dec 13 '09 at 9:27
feedback

Microsoft first released code signing technology ("Authenticode" in MS terminology) back in 1998. At that time microsoft provided a small (124 KB) self-extract ZIP file by the name "codesigningx86.exe".

Unfortunately this file is no longer available on Microsoft's site.

It may be downloaded from here and includes : signcode.exe, makecert.exe, cert2spc.exe, chktrust.exe, certmgr.exe, makecat.exe, makectl.exe.

link|improve this answer
Thank you. Sounds like reasonable alternative to signtool.exe – Peter Štibraný Dec 13 '09 at 9:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.