PDA

View Full Version : SSL/TLS secure channel. FIX (server 2016 & Win 10)


nutta111
03-12-2021, 01:40 PM
installing on server 2016 i got this error
The request was aborted: Could not create SSL/TLS secure channel.

first off make sure you have at minimum .netframe work 4.7

https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net47-web-installer

once installed follow the below

open powershell and copy and past the below

do not copy this part PS C:\Users\Administrator>

PS C:\Users\Administrator> [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

PS C:\Users\Administrator> [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls, [Net.SecurityP
rotocolType]::Tls11, [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Ssl3

PS C:\Users\Administrator> Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramewor k\v4.0.30319' -Name
'SchUseStrongCrypto' -Value '1' -Type DWord

PS C:\Users\Administrator> Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319 ' -Name 'SchUseStron
gCrypto' -Value '1' -Type DWord

& finally run

[Net.ServicePointManager]::SecurityProtocol

and it should list the following

Ssl3, Tls, Tls11, Tls12

now run emu installer.bat and shoud be good to go

happy huntings