Process After SSL Cert Update Follow
Here is a quick script to update and restart customer that update their SSL cert. Throw this into a batch file, insert the ssl hash and run it. Don’t forget to restart cadocs afterward. In some rare cases the box may need to be rebooted. 😊
netsh http add sslcert ipport=0.0.0.0:21686 certhash=CERTHASHGOESHERE appid={3ef12220-0b0b-4fc3-875c-b36900b8b7f4}
netsh http add sslcert ipport=0.0.0.0:21688 certhash=CERTHASHGOESHERE appid={aa9af57d-ed33-4e10-8f9c-57e39f272d54}
Get Thumbprint of the cert to be installed:
IIS > Server Certificates > Right Click On the cert > Details > Click on "Thumbprint"
netsh http delete sslcert ipport=0.0.0.0:21686
netsh http delete sslcert ipport=0.0.0.0:21688
netsh http add sslcert ipport=0.0.0.0:21686 certhash=[insert thumb print here] appid={3ef12220-0b0b-4fc3-875c-b36900b8b7f4}
netsh http add sslcert ipport=0.0.0.0:21688 certhash=[insert thumb print here] appid={aa9af57d-ed33-4e10-8f9c-57e39f272d54}
net stop "Conarc iChannel Data Service"
net start "Conarc iChannel Data Service"
net stop "Conarc iChannel File Transfer Service"
net start "Conarc iChannel File Transfer Service"
iisreset
Comments
0 comments
Please sign in to leave a comment.