SQL server 2019 installation failed, "required files failed to install"

Obadah Shikh 21 Reputation points
2022-04-18T02:50:37.53+00:00

I'm trying to install an SQL express server for my own personal projects but nothing I do is working, I checked online on tutorials for how to set everything up but the server just won't launch for some reason. And the error doesn't show any error codes or hints on what happened, just sends a link back to the SAME site which I downloaded it from (microsoft) and after trying to reinstall it from the new link and getting rid of the old one, nothing happens, same error and same link.

193727-image-2022-04-17-224930272.png

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,757 questions
0 comments No comments
{count} votes

Accepted answer
  1. AmeliaGu-MSFT 13,961 Reputation points Microsoft Vendor
    2022-04-18T05:47:01.163+00:00

    Hi ObadahShikh-4394,

    Welcome to Microsoft Q&A.
    Please try to add a backslash between Microsoft and .NetFramework in the registry:

    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  
    

    Please check Erland’s answer from this similar thread which might be helpful.

    Best Regards,
    Amelia


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. T. Kujala 8,706 Reputation points
    2022-04-18T04:05:11.91+00:00

    Hi @Obadah Shikh ,

    Open PowerShell as administrator and type the following 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

    Then install it again.

    1 person found this answer helpful.