Using netsh, bind an SSL certificate to a port number is failing

前端 未结 9 2172
囚心锁ツ
囚心锁ツ 2020-12-08 19:57

I have followed the instructions in SSL with Self Hosted WCF Service. When I am trying to bind the certificate on Windows 7 using netsh as described in How to: Conf

9条回答
  •  独厮守ぢ
    2020-12-08 20:24

    "Official" (not self signed) certificates (e.g. from Thawte) are imported in the certificate store: „Trusted Root Certification Authorities“.
    If no parameter "certstorename=" is passed in the netsh command, netsh takes "MY" what represents the "Private" store.
    To bind an official certificate, you have to add:

    certstorename=Root
    

    to the netsh command.

    Full information

提交回复
热议问题