I faced this problem twice, so I decide to write down some notes to help me and you in case we'll face this problem again (or for the first time).
When I assign the same certificate to two or more websites and after a while I decide to remove, IIS asks the following question:
Save file and re-open IIS GUI: the binding should be disappeared.
When I assign the same certificate to two or more websites and after a while I decide to remove, IIS asks the following question:
The Certificate associated with this binding is
also assigned to another site's binding. Deleting this binding will
cause the HTTPS binding of the other site to be unusable. Do you still
want to continue?
Well...I think not.
The consequence of this action is the stop of all others applications using that certificate, not quite good for a production environment. So what to do?
Edit C:\Windows\System32\inetsrv\config\applicationHost.config, search for your application name and manually delete the row with the https binding.
<binding protocol="https" bindingInformation<binding protocol="https" bindingInformation="*:443:" />"*:443:" />
Save file and re-open IIS GUI: the binding should be disappeared.
An IIS bug? Maybe or maybe only Microsoft style ;)