Created
December 12, 2021 19:14
-
-
Save adrianmihalko/336d422bf8ec0852c9947b4b8437fa22 to your computer and use it in GitHub Desktop.
"None of the ports were configured to use SSL certificate" - Dymo Web Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I can't describe how much I hate Dymo developers. Long hours of annoyance were caused by their negligence. | |
So you are here, because you are looking for solution for "None of the ports were configured to use SSL certificate" | |
- when you try to diagnose Dymo Web Service. | |
The good developers at Dymo forgot to delete/check/reinstall (call as you want) certificates when you uninstall/reinstall the web service. | |
After hours (days!) I found the solution. | |
$netsh http show sslcert | |
You can see that there are ports for Dymo configured... these should be deleted when you do an uninstall. Instead of this, | |
Dymo installer is just ignoring and doesn't reinstall the certificates -> you can never launch the web service. | |
So what to do? | |
Uninstall Dymo Label software. | |
Launch terminal with admin rights. | |
$netsh http delete sslcert 127.0.0.1:41951 | |
$netsh http delete sslcert 127.0.0.1:41952 | |
... | |
$netsh http delete sslcert 127.0.0.1:41960 | |
If you are done, install Dymo Label software (it takes longer as usual) and voila. Everything works as it should. | |
Click the star if this helped you. | |
Thanks. |
DaviatorSF
commented
Dec 31, 2022
via email
Oops, I didn’t realize that the same problem existed under Windows. Interesting. Anyway, thanks for trying to help. On Dec 31, 2022, at 1:34 AM, adrianmihalko ***@***.***> wrote:Re: ***@***.*** commented on this gist.This guide is for Windows only.—Reply to this email directly, view it on GitHub or unsubscribe.You are receiving this email because you commented on the thread.Triage notifications on the go with GitHub Mobile for iOS or Android.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment