Reputation: 970
While Installing SQL Server 2019 Developer Edition, I am getting error - A required file could not be downloaded. This could mean the version of the installer is no longer supported. Please download again from download site.
I am not getting what is missing file and how to resolve this.
Upvotes: 38
Views: 42355
Reputation: 153
You may need to set a proxy for required file download. This solution worked for me. I used a VPN software to download required file.
Upvotes: 1
Reputation: 77
Instalation requires access to the internet which was not accessible in my case, so i opened firewall for a moment to finish this instalation.
in other cases it is usefull to read the logs:
C:\Program Files\Microsoft SQL Server\150\SSEI\LogFiles
NOTE: 150 is version so your path could be different
Upvotes: 0
Reputation: 1902
Registry key edits didn't work for me. I ended up just downloading and installing SQL Express. I didn't want to install SQL Express edition, I wanted Developer Edition. At least I've got something and now I can try to figure if Express will do the job for my development work. If not I'll have to figure out how to upgrade express.
Upvotes: 0
Reputation: 314
Go to START and type "Windows Powershell". Click "Run as Administrator"
After clicking, the following blue screen cmd will be visible:
Type the following two commands:
Commands
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
Source video: https://youtu.be/F5worx5wbOs
Note: Open Powershell as an admin, else it won't work
Upvotes: 1
Reputation: 61
I had the same problem. You have to press win + R and write 'regedit
'. In the opened window follow this path:
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NetFramework\v4.0.30319
In this folder press the right button and click on 'New' -> 'DWORD (32 - bit) Value' with name 'SchUseStrongCrypto
' and value '1'.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NetFramework\v4.0.30319
In this folder press the right button and click on 'New' -> 'DWORD (32 - bit) Value' with name 'SchUseStrongCrypto
' and value '1'.
After that you can run and install Sql Server 2019.
Upvotes: 6
Reputation: 3024
Open PowerShell as administrator and run
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type Dword
Upvotes: 91
Reputation: 688
I encountered this problem recently - it was accompanied by an error in the Event Viewer System log, with source Schannel
:
A fatal error occurred while creating an SSL client credential. The internal error state is 10013.
This error indicates that the issue is related to the connection itself, rather than the specific installer file being downloaded.
I found a solution on the Microsoft TechCommunity site, linked at the bottom. Once I'd applied the cryptography change, the download worked immediately, no need for a different installer.
Upvotes: 0