Forum Discussion
Tetsona
Jan 12, 2022Copper Contributor
Upgrading custom SSL certificate
W.A.C. installed and working rel: 2110, 1.3.2111.01001 Reinstalling WAC with new thumbprint (MSI WindowsAdminCenter2110.msi), the GUI install fails without a clear error. Installing with command ...
- Jan 13, 2022
Tetsona FYI, I had an equivalent problem with WAC 2110.
I resolved the problem using these steps :
1. determine appid for further netsh command :
netsh http show sslcert SSL Certificate bindings: ------------------------- IP:port : 0.0.0.0:443 Certificate Hash : 6bbfc34841e6f17431c72044f69a9619fb8fcce4 Application ID : {afebb9ad-9b97-4a91-9ab5-daf4d59122f6} .../...
2. delete current config. :
netsh http delete sslcert ipport=0.0.0.0:443
3. add your ssl cert :
netsh http add sslcert ipport=0.0.0.0:443 certhash=new_hash appid={afebb9ad-9b97-4a91-9ab5-daf4d59122f6}
F_Cornou
Jan 13, 2022Copper Contributor
Tetsona FYI, I had an equivalent problem with WAC 2110.
I resolved the problem using these steps :
1. determine appid for further netsh command :
netsh http show sslcert
SSL Certificate bindings:
-------------------------
IP:port : 0.0.0.0:443
Certificate Hash : 6bbfc34841e6f17431c72044f69a9619fb8fcce4
Application ID : {afebb9ad-9b97-4a91-9ab5-daf4d59122f6}
.../...
2. delete current config. :
netsh http delete sslcert ipport=0.0.0.0:443
3. add your ssl cert :
netsh http add sslcert ipport=0.0.0.0:443 certhash=new_hash appid={afebb9ad-9b97-4a91-9ab5-daf4d59122f6}
- TetsonaJan 13, 2022Copper ContributorWorked perfectly.
Thanks