up vote 2 down vote favorite
1
share [g+] share [fb]

If you decide to sign your code, you'll need:

  • signcode.exe
  • makecert.exe
  • cert2spc.exe
  • pvk2pfx.exe

What's the best place to download these tools?

Is there a way to do this without downloading large quantities of the Microsoft Windows SDK?

link|improve this question

Added "without downloading most of the Microsoft Windows SDK" – Stephane Grenier Sep 21 '09 at 16:24
Please see my updated answer for your clarification. – bobbymcr Sep 21 '09 at 22:46
feedback

2 Answers

up vote 6 down vote accepted

Start with the Windows SDK. That should have most of what you are looking for.

Also, SignCode.exe has been deprecated after .NET 1.1. SignTool.exe is the replacement.


Without downloading the SDK?

In general, there are only a few SDK tools that are redistributable outside of the official package from Microsoft. They are listed in a redist.txt file. On my system, I found a .NET SDK redist.txt file in %ProgramFiles%\Microsoft.NET\SDK\v2.0 64bit (I assume the folder is called "v2.0" on x86 systems). Here's what it said:

.NET Framework SDK files

Subject to the license terms for the software,
the following .EXE files may be distributed unmodified:

MageUI.exe
Mage.exe
Makecert.exe

So it looks like the majority of those files will not be redistributable. So again, my answer is download the Windows SDK. Keep in mind you can install just a subset of the tools if you wish; the installer allows you to select/unselect any of the components (for example, just the .NET development tools).

link|improve this answer
Thanks for the updated answer! – Stephane Grenier Sep 22 '09 at 13:50
Good advice. As an update, SignTool.exe seems to now be in %ProgramFiles%\Microsoft SDKs\Windows\v7.1\ and %ProgramFiles%\Microsoft SDKs\Windows\v6.0A\ in the latest versions of the SDK. – Iain Collins Jun 1 '10 at 15:14
feedback

I believe the first three are part of the .NET Framework SDK while the last one is on the Windows Driver Kit.

I couldn't find a document listing pvk2pfx.exe as part of the Platform SDK (now apparently Windows SDK), but that was where I originally thought it was from.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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