Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We just upgraded our Visual Studio 2008 projects to VS2010. All of our assemblies were strong signed using a Verisign code signing certificate. Since the upgrade we continuously get the following error:

Cannot import the following key file: companyname.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the following key container name: VS_KEY_3E185446540E7F7A

This happens on some developer machines and not others. Some methods used to fix this that worked some of the time include:

  • re-installing the key file from Windows Explorer (right click on the PFX file and click Install)
  • installing VS2010 on a fresh machine for the first time prompts you for the password the first time you open the project, and then it works. On machines upgraded from VS2008, you don't get this option.

I've tried using the SN.EXE utility to register the key with the Strong Name CSP as the error message suggests, but whenever I run the tool with any options using the version that came with VS2010, SN.EXE just lists its command line arguments instead of doing anything. This happens regardless of what arguments I supply.

Does anyone know WHY this is happening, and have clear steps to fix it? I'm about to give up on Click Once installs and Microsoft Code Signing. Thanks for any help!

share|improve this question

16 Answers

up vote 181 down vote accepted

I was running into this problem as well. I was able to resolve the issue by running sn -i <KeyFile> <ContainerName> (installs key pair into a named container).

sn is usually installed as part of a Windows SDK. For example C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\sn.exe. Most likely this location is not on the search path for your standard environment. However, the "Developer Command Prompt" installed by Visual Studio adds additional information that usually includes the correct location.

Based on your post that would look like

sn -i companyname.pfx VS_KEY_3E185446540E7F7A

This must be run from the location of your PFX file, if you have the solution loaded in VS 2010 you can simply right click on the pfx file from the solution explorer and choose Open Command Prompt which will launch the .net 2010 cmd prompt tool in the correct directory.

Before running this sn command I did re-install the pfx by right clicking on it and choosing install however that did not work. Just something to note as it might be the combination of both that provided the solution.

Hope this helps solve your problem.

share|improve this answer
3  
Thanks Brandon - yes this, like the manual re-install of the key file "sort of" solves the problem. The issue is that as soon as you check in the key file, any other users that get latest on this checked in key file are now going to experience this bug. If any of those users check in their "fix" and I get latest, then my machine is now broken again... and so on. Microsoft have started a trouble ticket on this and assigned it to the VS2010 team and the VSS team. – JasonD May 17 '10 at 3:55
1  
Interesting. I did not run into that problem when adding the pfx to the new CSP. To my knowledge SN -i does not change the pfx file so you shouldn't have to check anything in afterwards. However if you were to change the pfx file in anyway such as resetting the password, that would cause an issue since it would change the pfx file. Does your solution build with that pfx file from any other machine? If so then the pfx file is correct just not set to the correct CSP on your machine that is having build issues. – Brandon Manchester May 17 '10 at 18:14
2  
At first I tried only the sn -i part but it complained that the password was incorrect (though it was correct). I removed the certificate, reinstalled it and then sn -i... worked. Basically confirming that for me, both steps were required. Reinstall cert then execute the sn command. – Dodgyrabbit Jun 16 '10 at 17:29
1  
I've found in both VSS and TFS that if you run the sn -i command it doesn't work unless you have the PFX file checked out, and when you check it in it doesn't work for other developers on the network. I'll have to try the re-install cert then run the sn -i command. We need it to work on all developer machines in the office. – JasonD Aug 16 '10 at 3:48
3  
This worked for me as well, however I never had to do this in the past. VS used to just pop up and ask for the password for each key. What has changed? – Kevin Berridge Sep 16 '11 at 19:51
show 1 more comment

I've discovered a fix that helps you be able to build successfully in a multi developer environment:

Instead of changing the password (which causes the .pfx to be changed), reselect the .pfx file from the combobox. This then invokes the password dialog. After entering the password, the project will build OK. Every dev can do this on his local machine without actually modifying the .pfx file.

I'm still having problems getting assemblies to be signed on our build server machine. I'm getting the same error there, however using the sn.exe -i method does not fix the problem for the buildserver.

share|improve this answer
Worked for me. Thanks. – Ronnie Overby Nov 17 '11 at 1:12
1  
Spent a while failing to get this working on our TFS build server too, realised I was logged on as myself, not as the build service account, no wonder it was unable to find it - doh! – Daniel Morritt Jan 10 '12 at 12:52
Perfect, worked like a champ. – jvenema Jan 13 '12 at 15:58
+1 for you. Thanks! That really works! And is just simple. – Guilherme J Santos Apr 16 '12 at 12:58
2  
This should be marked as the answer as the answer that is currently marked will not work in a multi-developer environment. Well done. – Daniel McQuiston Aug 17 '12 at 14:20
show 2 more comments

VSCommands 2010 (plugin for Visual Studio) can fix this for you automatically - just right-click on error and click Apply Fix from menu. You can get it from visual studio gallery http://visualstudiogallery.msdn.microsoft.com/en-us/d491911d-97f3-4cf6-87b0-6a2882120acf

share|improve this answer
I believe this is for the pro version - don't have this option in my lite version – Adam Butler May 5 '11 at 23:42
2  
The version I just downloaded (in Sept 2011) came with this option. – Jim Counts Oct 1 '11 at 0:07
3  
It still requires a pro license. – John Baughman Oct 3 '11 at 19:48

I had the same issue and deleting the store and readding didn't work. I had to do the following

Get a copy of openssl, it is available for windows at http://www.slproweb.com/products/Win32OpenSSL.html or use a Linux box as they all pretty much have it.

Run the following to export to a key file

openssl pkcs12 -in certfile.pfx -out backupcertfile.key

openssl pkcs12 -export -out certfiletosignwith.pfx -keysig -in backupcertfile.key

Then in the project properties you can use the PFX file.

share|improve this answer
Thank you!! I think this worked for me. I grabbed openssl here: gnuwin32.sourceforge.net/packages/openssl.htm – aherrick Dec 15 '11 at 19:19
I wracked my brains out trying to figure this out. – Beached Dec 29 '11 at 3:57
1  
+1 This works, thank you! – Dommer Feb 3 '12 at 20:29
I'd like to add the option to include the actual certificate in the pfx: openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt -keysig -keyex – Pete Jun 18 '12 at 13:02
100 times thank you! +100 if I could! – jonnyItunes Jul 23 '12 at 16:44

Spoke too soon! Rebuild brought the errors back into play...

I found this works - right click in solution explorer and exclude from project. Click show all files, right click and now include in project again. Now undo pending changes...

For some reason this sorted it out for me and was relatively painless!

share|improve this answer
2  
This worked for me also - completely painless. Thanks! – Nils Luxton Sep 6 '11 at 12:26
Confirmed. Worked for me. – George Chakhidze Oct 23 '12 at 10:34

I found that in some cases you should try to delete this key before you them install it, so do this as follow:

  1. sn -d VS_XXXX
  2. sn -i mykey.pfx VS_XXX
share|improve this answer

As the original author of the work around on the connect bug report, there are TWO variants of this message (I've discovered later)

For one variant you use sn.exe (usually if you are doing strong naming) to import the key to the strong naming store.

The other variant for which you use certmgr to import is when you're codesigning for things like click-once deployment (note you can use the same cert for both purposes).

Hope this helps.

share|improve this answer
Yeah, we tried that one with Microsoft support as well, and that's the way to do the code signing import. The problem really seems to be that the certificate password gets lost during the checkin process source safe. But this doesn't look to be the real problem. It looks if you enter the certificate details on Widnows 7 machine #1, and then move that exact same file to a different machine and register it, the registration will work, but the build will fail. Microsoft are still looking into it for us. For now we had to disable code signing and sign manually during release. – JasonD May 21 '10 at 18:24

Nothing worked for me, then I went and looked into the certificate manager (mmc.exe), the certificate was not imported in the personal store, so I imported it manually and then the project compiled. See: http://msdn.microsoft.com/en-us/library/aa730868%28v=vs.80%29.aspx#rsvssign_topic3

share|improve this answer

As a workaround, i tried running the vs2010 as an administrator and it worked for me.

Hope this helps.

share|improve this answer

I had the same problem after moving my windows installation to a ssd. None of the above solutions worked for me.

My solution was to open the project file in notepad and remove all references to pfx keys. Once the file is saved open the solution in visual studio. Go to project -> properties -> singing. You should see no keys listed in the 'choose the strong name key file' combo box. In the combo box browse to the key, select it and your project can now be built.

share|improve this answer

Reselecting key file in a combobox and entering password helps on this for us.

But it is needed to do each time the key file changes and it seems to be not OK.

share|improve this answer

My problem was that the TFS Build Controller was running as Network Service and for some reason I don't understand the VS Build Host service certificates were not being used. I changed the identity of the VS Build service to something more manageable, made sure it had rights on the TFS server, and manually added the certs using the MMC.

Problem was also that MSBuild can't add the password protected certs to the store.

share|improve this answer
Which store do you need to add it to?? – felickz Apr 20 '12 at 12:27
I did the same (and also put certs in this users Personal/Trusted Root/Trusted Pub ..not sure which fixed it) and was able to move onto the next TFS error that i had conflicting workspaces, so to rectify that i also had to remove and add a new build agent. – felickz Apr 20 '12 at 14:17

Okay, this worked for me Open the old solution/project as an Administrator in VS.NET 2010 and open the new or copied solution/project as an administrator remove the copied pfk file in the new VS.NET 2010 solution/project and go to project properties and unselect it. With both projects open copy paste to the new one goto project properties select it build. I opened and closed VS.NET and also after removing from the new project built it before copying it from the old projectand selecting it. I received the error at the start of this post first up when I copied the project and tried to build it.

share|improve this answer

I had similar issue, but after selecting the pfx in a "Strong name key file" ComboBox and typing password I still got similar error: "Cannot import the following key file: companyname.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate" (without the container name part).

Also, "Sign the ClickOnce manifests" Certificate Info panel wasn't populated.

I did "Select from File..." on my pfx and It solved the problem

share|improve this answer

After trying all these solutions (and a lot more), I found that the problem lies somewhere else. For people that go through the same misery as me after buying a certificate, I'll share the solution for my problem.

Behavior

I understand that 'sign' applies a strong name and not an authenticode to a DLL or EXE. This is why signtool will work in this case, but 'sign' in Visual studio will not work.

Reason

In the past I've had experience with certificates from Verisign. They have a KeySpec=2 in the certificate - which is used with the 'sign' functionality in Visual Studio. These certificates work fine for both Visual Studio and signtool.

I now bought certificates from Comodo, which have an incorrect KeySpec=1 in the code signing certificates. That means these certificates work fine with signtool (authenticode) but not with strong naming (the sign dropdown).

Solution

There are two ways to solve this issue:

  1. Create a separate certificate for your strong name using 'sn -k [name].snk'. Sign the assembly using the snk and afterwards use signtool with your code signing certificate to do sign the DLL/EXE with the authenticode signature. While this seems strange, from what I understand this is a correct way to deal with certificates, because strong names have a different purpose than authenticode (see also this link for details on how this works).
  2. Import your certificate as KeySpec=2. The procedure for this is detailed here.

Because I want to use multiple strong names, I currently use option (1), although option (2) also works.

share|improve this answer

All methodes above didn't help me. BUT !!! When I deleted *.pfx file from my project and add it to assembly's signing again I built my project with no error! I can't explain reasons of this problem. But it worked for me.

share|improve this answer

protected by Kev Oct 31 '12 at 16:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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