1
votes

On Friday I successfully bound my certificate to port 443 using netsh.

Today I need to change the port, so I tried to 'unbind' it with netsh:

netsh delete sslcert ipport=0.0.0.0:443

The result is an error message

The following command was not found: delete sslcert ipport=0.0.0.0:443.

Confusingly the command is exactly as specified in the Microsoft documentation for netsh.

How do I remove a port binding so that I can rebind the certificate to another port?

1

1 Answers

2
votes

Try this one

netsh http delete sslcert ipport=0.0.0.0:443

You were missing the http parameter.