Forum Discussion
Yao Ming
Nov 02, 2017Copper Contributor
SQL Server installer unable to download the required files
Dear Community, I wanted to install the developer edition, however, I keep getting this error message: "We failed to download the files we require. Please check your network connection and try agai...
JBee
Feb 10, 2021Brass Contributor
I've had a similar problem with SQL Express 2019 and this helped on WS 2019
# set strong cryptography on 64 bit .Net Framework (version 4 and above)
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
# set strong cryptography on 32 bit .Net Framework (version 4 and above)
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
- kbig_Apr 05, 2022Copper ContributorTY!
- ChicagoJayApr 05, 2022Copper ContributorBrilliant! Worked for Express edition too!
- gregnologySep 02, 2021Copper Contributor
JBee That did it for me. Thanks!
- JinjaNinja69Mar 12, 2021Copper ContributorBingo!, perfect fix. You would think server 2019 would just work with this install file...
- jackvaughanjrMar 10, 2021Copper ContributorThis worked for me.