Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleRemoving an existing binding
themeRDark
languagenone
 
netsh http delete sslcert ipport=192.168.0.179:8443
 

Once you are sure your endpoint is no longer bound to a certificate, add a new binding:

Code Block
titleAdding a new binding
themeRDark
languagenone
 
netsh http add sslcert ipport=192.168.0.179:8443 certhash=0011223344556677889900112233445566778899 appid={ecc39c98-e826-4009-9401-2a5c6e7babbc}
 

The 

Keywordmacro
Labelipport
 parameter is the endpoint you want to bind.
The 
Keywordmacro
Labelcerthash
 is the thumbprint (certificate hash) of the SSL certificate you want to use
The 
Keywordmacro
Labelappid
 parameter is application-specific and should be set to a value of  
Keywordmacro
Label{ecc39c98-e826-4009-9401-2a5c6e7babbc}
 when used for the Echo application.

...