SOLVED

Upgrading custom SSL certificate

Copper Contributor

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 line mode to enable logging, relevant part of log.txt file contains:

.
.
.
MSI (s) (E8:10) [08:49:54:319]: SOURCEDIR product ==> {88417779-D895-4E82-8907-17DC909BC861}
MSI (s) (E8:10) [08:49:54:319]: Determining source type
MSI (s) (E8:10) [08:49:54:319]: Note: 1: 2203 2: [CUT]\WAC.msi 3: -2147287038
MSI (s) (E8:10) [08:49:54:319]: Note: 1: 1316 2: [CUT]\WAC.msi
MSI (s) (E8:10) [08:49:54:319]: SECREPAIR: Error determining package source type
MSI (s) (E8:10) [08:49:54:319]: SECREPAIR: Cleanup the Hash Value
MSI (s) (E8:10) [08:49:54:319]: SECUREREPAIR: SecureRepair Failed. Error code: 52444F39920
Inizio operazione 08:49:54: CreateFirewallRule.
.
.
Property(S): MsiNetAssemblySupport = 4.7.3190.0
Property(S): MsiWin32AssemblySupport = 6.3.17763.1
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = Windows User
Property(S): DATABASE = C:\WINDOWS\Installer\5fe0886.msi
Property(S): OriginalDatabase = [CUT]\WindowsAdminCenter2110.msi
Property(S): SourcedirProduct = {88417779-D895-4E82-8907-17DC909BC861}
MSI (s) (E8:10) [08:49:54:371]: Note: 1: 1729
MSI (s) (E8:10) [08:49:54:375]: Transforming table Error.

MSI (s) (E8:10) [08:49:54:379]: Transforming table Error.

 

Thanks

 

2 Replies
best response confirmed by Tetsona (Copper Contributor)
Solution

@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}
Worked perfectly.
Thanks
1 best response

Accepted Solutions
best response confirmed by Tetsona (Copper Contributor)
Solution

@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}

View solution in original post