Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A required file could not be downloaded while installing SQL Server 2019 Developer

Tags:

sql-server

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.

enter image description here

I am not getting what is missing file and how to resolve this.

like image 626
Nandan Acharya Avatar asked Aug 30 '25 15:08

Nandan Acharya


1 Answers

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

Source https://techcommunity.microsoft.com/t5/sql-server/sql-server-installer-unable-to-download-the-required-files/m-p/2120065/highlight/true#M890

like image 71
Mike Avatar answered Sep 02 '25 19:09

Mike