"The parameter is incorrect." error using netsh http add sslcert

Ssl CertificateNetsh

Ssl Certificate Problem Overview


Following the instructions on "How to: Configure a Port with an SSL Certificate" in this link: http://msdn.microsoft.com/en-us/library/ms733791.aspx, I entered this command on the commandline (duh):

> netsh http add sslcert ipport:10.141.146.227:7001 certhash=5d48e604007b867ae8a69260a4ad318d2c05d8ff appid={EDE3C891-306C-40fe-BAD4-895B236A1CC8}
The parameter is incorrect.

My certhash thumbprint was taken from the certificate in Certificates(Local Computer)>Personal>Certificates folder.

The appid GUID was generated.

What else is wrong that I need to fix to get this to work?

Ssl Certificate Solutions


Solution 1 - Ssl Certificate

In PowerShell just type as follows. first get into netsh http mode and then add sslcert. It's worked for me.

>netsh

netsh>http

netsh http>add sslcert ipport=0.0.0.0:13286 appid='{a5455c78-6489-4e13-b395-47fbdee0e7e6}' certhash=<thumprint without space>

Solution 2 - Ssl Certificate

Another possible cause for this problem is hidden characters being copied from the Certificate Manager page. If you copy the thumbprint from the details window in Certificates, check for a hidden character at the start (use your arrow keys!). This was the cause for me of the "The Parameter is Incorrect" error message.

Solution 3 - Ssl Certificate

The PowerShell command line and PowerShell scripts in ps1 files will think curley-braces {...} are PowerShell directives. So quote them. Otherwise, as you have seen, PowerShell will be confused.

So rather than this (which you found fails):

netsh http add sslcert ipport:10.141.146.227:7001 certhash=5d48e604007b867ae8a69260a4ad318d2c05d8ff appid= {EDE3C891-306C-40fe-BAD4-895B236A1CC8} 

Do this (note the single quotes):

netsh http add sslcert ipport:10.141.146.227:7001 certhash=5d48e604007b867ae8a69260a4ad318d2c05d8ff appid= '{EDE3C891-306C-40fe-BAD4-895B236A1CC8}'

Here is some information about PowerShell syntax with curley braces:

http://danv74.wordpress.com/2012/07/12/powershell-and-the-hidden-art-of-curly-braces-and-other-braces/

Solution 4 - Ssl Certificate

Looking at the syntax for the netsh command, I saw this example:

add sslcert ipport=1.1.1.1:443 certhash=0102030405060708090A0B0C0D0E0F1011121314 appid={00112233-4455-6677-8899-AABBCCDDEEFF}

By the looks of it, your problem is that you're doing

ipport:10.141.146.227:7001
      ^

as opposed to

ipport=10.141.146.227:7001
      ^

Solution 5 - Ssl Certificate

Copying the certificate thumbprint from the Certificate\Details\Thumbprint would prepend the thumbprint value with the the bytes '3f38' which, when converted to ANSI were shown as a '?'. This hidden value caused the issue for me.

I pasted the value into notepad++, chose 'Encoding' > 'Convert to ANSI', then I manually removed the prepended '?' characters. I would then have a clean thumbprint value to use.

Solution 6 - Ssl Certificate

  1. Copy the command into notepad
  2. Save it as ANSI
  3. Close and reopen the file
  4. Remove bogus ? characters
  5. Copy from notepad to the command prompt and run the command

Solution 7 - Ssl Certificate

I faced this problem several times and every time it had a different cause, so I decided to write the causes and exact command that worked for me.

Here are some causes:

1- Copy and pasting certificate thumbprint from windows dialog adds a hidden character to your hash. It is not visible in text editors but you need to remove the character to make it work.

2- SSL thumbprint should be available in Personal -> Certificates to work with localhost.

3-It should be 'ipport=' not 'ipport:'

4- SSL certificate should have a private key. If you are using certificate management console, make sure that it has a little key icon on the certificate view.

5- GUID should be defined in full format: {a10b0420-a21f-45de-a1f8-818b5001145a}, and it should have one quote in powershell: '{a10b0420-a21f-45de-a1f8-818b5001145a}' Thus, PowerShell format is different from command line.

6- SSL Cert should have complete characters with all padding '0's and without any space. You may copy thumbprint (be careful to remove special hidden character) and remove spaces, or use 'netsh http show sslcert' to get the value if the certificate is already registered for another address.

What worked for me:

Here is the exact command that worked for me in powershell:

netsh http add sslcert ipport=0.0.0.0:20001 certhash=5304c034548b27c72b5e9c14f0c7bdd13e52d760 appid='{a10b0420-a21f-45de-a1f8-818b5001145a}'

And here is the command line statement:

netsh
http add sslcert ipport=0.0.0.0:20001 certhash=5304c034548b27c72b5e9c14f0c7bdd13e52d760 appid={a10b0420-a21f-45de-a1f8-818b5001145a}

More commands to help you avoid related problems:

Use the following command to see current registered certificate. You may find and reuse certhash or your appid from there:

netsh http show sslcert

If the certificate is already registered with similar ip and port, you need to remove it. I found it cause problem with localhost, 127.0.0.1 and 0.0.0.0. You need to have only 0.0.0.0 registered in your testing environment. Use the following command to remove potential corrupted certificates:

netsh http delete sslcert ipport=0.0.0.0:20001

Solution 8 - Ssl Certificate

I was getting this error as well when I was just getting started with http.sys. After I ran:

netsh http add iplisten ipaddress=0.0.0.0

then the netsh http add sslcert commands started behaving properly.

Solution 9 - Ssl Certificate

In my case the problem is that I following the microsoft inscructions I copied the thumbprint from the SSL window. the thing is that doing so copies non-printable character at the beginning of the hash.

Try to paste the thumbprint into notepad and then press home and pres delete twice (until the first char from the thumbprint is deleted) and the re-add the char. You can see the char if you copy the thumbprint and paste it into cmd:

thumbprint with

Solution 10 - Ssl Certificate

I ran across this question while looking for a solution to the problem. I finally found one that worked for me.

My certhash parameter wasn't fully 20 bytes long. I had to pad it with zeroes in front to get it to work.

So, instead of

certhash=112233445566778899aabbccddeeff00, I had to do this:

certhash=00000000112233445566778899aabbccddeeff00.

Hope this helps.

Solution 11 - Ssl Certificate

Using the Serial number instead of the Thumbprint for the certhash parameter will cause this error because of the difference in the amount of characters. Padding with 0s will change the error to SSL Certificate add failed, Error: 1312

Solution 12 - Ssl Certificate

Sir, you have ipport: rather than ipport= which is easy to do since you follow that with ip:port

Also, watch out for the { versus < or (, that has also gotten me in the past.

Solution 13 - Ssl Certificate

Watch out, if you have a DNS Name as a Binding use hostnameport instead of ipport

netsh http delete sslcert hostnameport=domainame.com:443

I had to delete ADFS Proxy Bindings for Office 365 Single-Sign On.

Solution 14 - Ssl Certificate

there were a few things i did that i thought made it work after getting the same "The parameter is incorrect." Error.

  1. restarted machine and did it again. it worked the first time.
  2. made sure i was in c:\ and put the command again after restarting didn't work

i couldn't explain why but i think that maybe both times, there was something else wrong. because the third time this happened to me,

  1. i went through the thumbprint of my CA (not the issued server cert) and copied it again from the MMC and it worked.

after this happened, i deleted it again (netsh http delete sslcert ipport=0.0.0.0:) and repeated the process using the thumbprint of the server certificate. The darned thing worked again.

I dunno, just try going through the same thing I did. maybe one of these would work. In the end, i suspect that I entered a bogus space or character in the certhash.

Solution 15 - Ssl Certificate

This will work from the PowerShell commadline:

$AppId = [Guid]::NewGuid().Guid
$Hash = "209966E2BEDA57E3DB74FD4B1E7266F43EB7B56D"

netsh http add sslcert hostname=localhost:8088 certhash=$Hash appid=`{$AppId`} certstorename my

The important details are to escape each { } with a backtick (`) and not to omit certstorename. Otherwise netsh raises an error 87.

The variables are just for sake of convenience.

Solution 16 - Ssl Certificate

This is actually a syntax problem of cmd vs Powershell. Changing the command to

netsh http add sslcert ipport=0.0.0.0:8085 certhash=4da5af739d6745de4e38fea9574cdaa79032ea14 appid="{7BBE87B9-D98F-41D7-B726-FC5E1300ED28}" 

will work in both terminals.

Solution 17 - Ssl Certificate

The "-"s are NOT irrelevant. If your guid doesnt look exactly like this you will get the incorrect parameter error: {EDE3C891-306C-40fe-BAD4-895B236A1CC8} vs. EDE3C891306C40feBAD4895B236A1CC8 -> WRONG {EDE3C891306C40feBAD4895B236A1CC8} -> WRONG

Also Im using the guid for the appid of the IIS, not a random one.

Solution 18 - Ssl Certificate

I must have ended up mangling the relationship between VS and IIS Express by deleting the localhost certificate. I was really stuck. The app wouldn't start and nothing I could do seemed to correct this disconnect (which is want brought me to this thread to begin with).

I was finally able to get over the issue by changing the assigned port on the non-SSL URL (launchSettings.json in .NET Core apps) and disabling the Enable SSL checkbox in the project settings and taking a fresh start. I was then able to add my newly created cert with this command: netsh http add sslcert ipport=0.0.0.0:44392 appid={214124cd-d05b-4309-9af9-9caa44b2b74b} certhash=A0ADC1A1002F288CCFA96261F9F352D28C675A90.

Also, note that the appid variable is not a reflection of your VS project AppID (or at least it doesn't have to be). It's just an arbitrary GUID, according to Scott Hanselmann:

> The AppId doesn't really matter, its just a GUID. This tells HTTP.SYS that we're using that certificate.

This was not obvious to me and made dealing with the parameter is incorrect error that much more obscure.

If you're experiencing similar issues, good luck. I believe in you. Ping me if you're feeling lost and alone. Maybe I can remember something by then! :D

Solution 19 - Ssl Certificate

It could be useful to add my resolution in this thread :

I was trying to add an ippport with the hostnameport parameter so I got this parameter error.

netsh http add sslcert hostnameport="10.0.0.120:443"

Instead of :

netsh http add sslcert ipport="10.0.0.120:443"

Cya !

Solution 20 - Ssl Certificate

I had hidden issue that only showed in powershell, not on command prompt.

I had copied thumbprint from certificate and removed all spaces in notepad++, but it still had a hidden character in front

looked like this .. certhash=dca41243... was actually .. certhash="special char"dca41243...

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDerrickView Question on Stackoverflow
Solution 1 - Ssl CertificateAbdul HakimView Answer on Stackoverflow
Solution 2 - Ssl CertificateRichardView Answer on Stackoverflow
Solution 3 - Ssl CertificatecodingoutloudView Answer on Stackoverflow
Solution 4 - Ssl CertificatecmptrgeekkenView Answer on Stackoverflow
Solution 5 - Ssl CertificateAndreas PresthammerView Answer on Stackoverflow
Solution 6 - Ssl CertificatetcbView Answer on Stackoverflow
Solution 7 - Ssl CertificatemohghaderiView Answer on Stackoverflow
Solution 8 - Ssl CertificateTim DannerView Answer on Stackoverflow
Solution 9 - Ssl CertificateSimSimYView Answer on Stackoverflow
Solution 10 - Ssl CertificateChristopher BroomeView Answer on Stackoverflow
Solution 11 - Ssl CertificateDaniel NView Answer on Stackoverflow
Solution 12 - Ssl CertificateGMLewisIIView Answer on Stackoverflow
Solution 13 - Ssl CertificatejoelschmidView Answer on Stackoverflow
Solution 14 - Ssl CertificateDerrickView Answer on Stackoverflow
Solution 15 - Ssl CertificatePeterXXView Answer on Stackoverflow
Solution 16 - Ssl CertificateSammieDyalnTView Answer on Stackoverflow
Solution 17 - Ssl CertificateMartin Clemens BlochView Answer on Stackoverflow
Solution 18 - Ssl CertificateVinney KellyView Answer on Stackoverflow
Solution 19 - Ssl CertificateNicolas LeucciView Answer on Stackoverflow
Solution 20 - Ssl CertificateTommy G.View Answer on Stackoverflow