Subject: |
RE: Getting "SSL Error: SSL routines, SSL23_READ, ssl handshake failure" for WinRM Device |
Author: |
Larry |
Posted: |
2020-02-01 04:17 |
Found the solution. Had to delete the https certificate that already existed and create a new one.
See listeners:
Winrm enumerate winrm/config/listener
Delete listener:
winrm delete winrm/config/Listener?Address=*+Transport=HTTPS
Create new listener:
New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname HOST
winrm create winrm/config/Listener?Address=*+Transport=HTTPS @{Hostname="HOST";CertificateThumbprint="XXXXXXXXXX"}
------------------------------
Larry
------------------------------