The netsh command wants an appid (see here) :

netsh http add sslcert ipport=0.0.0.0:8000 certhash=0000000000003ed9cd0c315bbb6dc1c08da5e6 appid={00112233-4455-6677-8899-AABBCCDDEEFF}

I've not been able so far to understand how I'm supposed to know the GUID netsh wants me to provide. Any hints?

link|improve this question

49% accept rate
feedback

2 Answers

up vote 10 down vote accepted

You can use any valid GUID. It is only used to allow you to identify the binding later.

link|improve this answer
feedback

I used the Application GUID for my WCF service that is located within the AsseblyInfo.vb (VB.NET) or AssemblyInfo.cs (C#) file of my hosting application (Windows Service) as show below:

<Assembly: Guid("8fbacae2-bd4e-8ef5-b202-1561845dd04f")> 

I used this as the appid parameter for the netsh.exe tool like so:

appid={8fbacae2-bd4e-8ef5-b202-1561845dd04f}

It worked perfectly and my WCF service uses Https via that SSL cert.

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.