I use command line in c# to bind an x509 certificate to a port as follows
netsh http add sslcert ipport=0.0.0.0:{0} certhash={1} appid={2} clientcertnegotiation=enable
It works fine. But if I restart the computer, I will need to remove the certificate from the port and rebind it again. Why? Any solution?
Thanks