Forum Discussion
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 again."
My network connection is working fine; however, my local disk is almost full. If that's the reason the installer is failing, is it possible to force it to download to another disk?
Thanks.
42 Replies
- DanthmaCopper ContributorIs there a current fix for this? Still unable to download SQL Express or Developer server. Unfortunately, I don't really understand any of the workarounds listed in the comments
- Fatih_TRCopper Contributor
Hello,
I will tell you step by step.
Go to your 'Search tab' on your Windows. Open as 'administrator' 'Windows PowerShell'. You will see a blue screen whit PS C:\Windows\system32> writing in it.
1- Copy this and klik on enter
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
2- Copy this and klik on enter
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
And now you can download 'SQLServer2019'
- ChyomaaCopper Contributor
- OBMBICopper Contributor
I was installing SQL Server from the command line and my Configuration.ini file was incorrect.
You can check installation logs in the following path, might highlight what the issue is.
C:\Program Files\Microsoft SQL Server\<VERSION>\SSEI\LogFiles
- JBeeBrass 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_Copper ContributorTY!
- ChicagoJayCopper ContributorBrilliant! Worked for Express edition too!
- gregnologyCopper Contributor
JBee That did it for me. Thanks!
- NDB56Copper Contributor
Succeeded by opening Telerik Fiddler and then started the SQL Server installation.
- amccallCopper Contributor
I found I was getting the below error in event viewer (Along with the error OP is seeing) at each attempt to install SQL server Dev edition or express.
Addition Error: "A fatal error occurred while creating a TLS client credential. The internal error state is 10013."
Here are the steps (from at this https://social.technet.microsoft.com/Forums/ie/en-US/aaced205-b0ec-4874-b440-8075dd74d8df/a-fatal-error-occurred-while-creating-an-ssl-client-credential-the-internal-error-state-is-10013?forum=exchangesvradmin) I used:
1. In Control Panel, click Administrative Tools, and then double-click Local Security Policy.
2. In Local Security Settings, expand Local Policies, and then click Security Options.
3.Under Policy in the right pane, double-click System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing, and then click Enabled.
4. Ran gpupdate /force
Thank you,
Aaron.- Michael YuskoCopper Contributor
I corrected the error by enabling TLS 1.0.
- ssilberbergCopper Contributor
Michael Yusko Still happening in 2020, even with TLS 1.2
- Smriti JainCopper Contributorsame here...:(
- Rune BrattasCopper Contributor
Same here... :(
- Smail GalijasevicCopper Contributor
Download from https://www.microsoft.com/en-us/download/details.aspx?id=55994 and it will work
- Lea eax edxCopper Contributor
The site no longer exists. I get
We're sorry, this download is no longer available.
- Smail GalijasevicCopper Contributor
The link above which does not work included "and" in the hyperlink
here is a link without the "and"...
https://www.microsoft.com/en-us/download/details.aspx?id=55994%C2%A0and
- Lewis FidlersCopper Contributor
Managed to install the express edition after the network reset. No help on the development version though.