The domian names not setup for yoru server. Unknown error...

-- -- 872 Reputation points
2022-12-24T03:26:49.937+00:00

Hi

Windows Server 2016 with Essentials.

I have started getting this issue on two separate servers.

The server certificate for remote access (remote.mydomain.com) has expired and needs to be renewed. In Configure AccessAnywhere wizard when I try Setup I get the error screen below at the end.

I have tried adding below reg entries but no luck. How can I solve this issue and renew the certificate?

Windows Registry Editor Version 5.00  
  
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\v2.0.50727]  
"SystemDefaultTlsVersions"=dword:00000001  
"SchUseStrongCrypto"=dword:00000001  
  
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\v4.0.30319]  
"SystemDefaultTlsVersions"=dword:00000001  
"SchUseStrongCrypto"=dword:00000001  
  
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft.NETFramework\v2.0.50727]  
"SystemDefaultTlsVersions"=dword:00000001  
"SchUseStrongCrypto"=dword:00000001  
  
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft.NETFramework\v4.0.30319]  
"SystemDefaultTlsVersions"=dword:00000001  
"SchUseStrongCrypto"=dword:00000001  

Thanks

Regards

273814-rpviewer-11.png

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,127 questions
0 comments No comments
{count} votes

Accepted answer
  1. Dave Patrick 426.1K Reputation points MVP
    2022-12-24T04:02:59.007+00:00

    Something here could help.
    https://server-essentials.com/community/answers?searchQ=Configure%20AccessAnywhere%20wizard

    --please don't forget to upvote and Accept as answer if the reply is helpful--


2 additional answers

Sort by: Most helpful
  1. -- -- 872 Reputation points
    2022-12-26T22:45:29.16+00:00

    Hi

    So here is the answer. Run the script in this link using powershell; https://server-essentials.com/community/answers/anywhere-access-wizard-stop-working

    # PowerShell  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
      
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v2.0.50727" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v2.0.50727" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v4.0.30319" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v4.0.30319" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
      
    Restart-Computer -Force  
    

    This script forces changes to registry which some times does not take place just by running the reg file.

    Regards

    1 person found this answer helpful.

  2. -- -- 872 Reputation points
    2022-12-26T23:12:25.933+00:00

    Hi

    So here is the answer. Run the script in this link using powershell; https://server-essentials.com/community/answers/anywhere-access-wizard-stop-working

    # PowerShell  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
      
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v2.0.50727" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v2.0.50727" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v4.0.30319" -Name "SystemDefaultTlsVersions" -Value 1 -PropertyType DWORD -Force  
    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NETFramework\v4.0.30319" -Name "SchUseStrongCrypto" -Value 1 -PropertyType DWORD -Force  
      
    Restart-Computer -Force  
    

    This script forces changes to registry which some times does not take place just by running the reg file.

    Regards

    1 person found this answer helpful.