problems installing sql server express 2019

Daniel R 21 Reputation points
2022-04-19T20:54:35.44+00:00

I have problems installing sql server express 2019, does not even start the installation

This is the install log

(01) 2022-04-19 15:22:26 SSEI v15.2002.4709.1
(01) 2022-04-19 15:22:26 CorrelationId: 8a41c882-5146-4f6c-b5aa-9aadb36ca2cd
(01) 2022-04-19 15:22:26 CurrentCulture.Name='es-MX'.LCID='2058'.Parent.Name='es'
(01) 2022-04-19 15:22:26 CurrentUICulture.Name='es-ES'.LCID='3082'.Parent.Name='es'
(01) 2022-04-19 15:22:26 resolvedCulture: es-ES
(01) 2022-04-19 15:22:26 osSupported: True, osVersion: 10.0.19044.0, osPlatform: amd64
(04) 2022-04-19 15:22:27 .NET Framework Version: 4.5
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIActivityStart:Message: Starting Activity StartupBootstrapActivity
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIProgressReport:ProgressPercent: 1
(04) 2022-04-19 15:22:27 Exception: IsTransientException: False, Message: Anulada la solicitud: No se puede crear un canal seguro SSL/TLS.,
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIProgressReport:ProgressPercent: 100
(04) 2022-04-19 15:22:27 StartupBootstrapActivityFatalException: Message: ManifestNotFound
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIActivityMessage:Message: No se ha podido descargar un archivo necesario. Esto podría significar que la versión del instalador ya no se admite. Realice la descarga de nuevo desde el sitio de descargas.
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIProgressReport:ProgressPercent: 100
(04) 2022-04-19 15:22:27 StartupBootstrapActivity:SSEIActivityEnd:Message: Finishing Activity StartupBootstrapActivity
(04) 2022-04-19 15:22:27 Activity Summaries for Scenario [InitializeBootstrapManifest]
(04) 2022-04-19 15:22:27 ActivityName Outcome WasCancelled DurationSeconds
(04) 2022-04-19 15:22:27 StartupBootstrapActivity 0 0 2315735
(04) 2022-04-19 15:22:27 Failed to initialize application: Microsoft.Sql.Installer.Engine.FatalActivityException: No se ha podido descargar un archivo necesario. Esto podría significar que la versión del instalador ya no se admite. Realice la descarga de nuevo desde el sitio de descargas.
en Microsoft.Sql.Installer.Engine.StartupBootstrapActivity.RunActivity()
en Microsoft.Sql.Installer.Engine.SetupEngine.ExecuteActivity(ActivityBase activity)
en Microsoft.Sql.Installer.Engine.SetupEngine.ExecuteSetup()
en Microsoft.Sql.Installer.Engine.ManifestCache.InitializeBootstrapManifest(String edition)
en Microsoft.Sql.Installer.Engine.ManifestCache.Initialize(String edition, Boolean skipBootstrapInitialization)
en Microsoft.Sql.Installer.UI.SSEIBusinessLogic.Initialize(String edition)
en Microsoft.Sql.Installer.UI.ViewModels.StartPageViewModel.InitializePage()
(04) 2022-04-19 15:22:27 AppInitializationFatalException: ExceptionMessage: No se ha podido descargar un archivo necesario. Esto podría significar que la versión del instalador ya no se admite. Realice la descarga de nuevo desde el sitio de descargas. TypeName: FatalActivityException StackTrace: en Microsoft.Sql.Installer.Engine.StartupBootstrapActivity.RunActivity()
en Microsoft.Sql.Installer.Engine.SetupEngine.ExecuteActivity(ActivityBase activity)
en Microsoft.Sql.Installer.Engine.SetupEngine.ExecuteSetup()
en Microsoft.Sql.Installer.Engine.ManifestCache.InitializeBootstrapManifest(String edition)
en Microsoft.Sql.Installer.Engine.ManifestCache.Initialize(String edition, Boolean skipBootstrapInitialization)
en Microsoft.Sql.Installer.UI.SSEIBusinessLogic.Initialize(String edition)
en Microsoft.Sql.Installer.UI.ViewModels.StartPageViewModel.InitializePage()

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,737 questions
0 comments No comments
{count} votes

Accepted answer
  1. Erland Sommarskog 101.1K Reputation points MVP
    2022-04-19T21:41:03.903+00:00

    This has been a common problem the last few days. I was under the impression that has been fixed - I downloaded the exe and started and got to the first page.

    But, hm, I tried Developer Edition, and you are downloading Express. Did they forget to check that one?

    Anyway, try this in an elevated PowerShell Window:

    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
    
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Daniel R 21 Reputation points
    2022-04-19T21:53:42.097+00:00

    Hey that was very helpful, thanks so much for your help.

    0 comments No comments