Let’s Talk

We would love to hear from you. Want to know more about
our services or have any questions? Say Hi!

Sitecore Failed to start service 'Sitecore Marketing Automation Engine’ in windows 11 Error | Solution

July 14, 2022
Sitecore Failed to start service 'Sitecore Marketing Automation Engine’ in windows 11 Error | Solution
Keyur Garala
Keyur Garala
Sitecore Certified Architect
sitecore-failed-start-service-sitecore-marketing-automation-engine-windows-11-error-solution

When trying to install a new Sitecore instant in windows 11, the system setup gives error after deploying automation website. It’s trying to up Sitecore marketing automation engine and an error occurs due to a failure caused by TLS 1.3 If you look into the Event Viewer you can find KERNELBASE.dll error:

sitecore-failed-start-service-sitecore-marketing-automation-engine-windows-11-error-solution-2

And Sitecore setup also shows errors like in the below image:

sitecore-failed-start-service-sitecore-marketing-automation-engine-windows-11-error-solution-3
Solution:

You need to disable TLS 1.3 over TCP for the local IIS. For that run the below script in power shell one by one or create one .ps1 file and run

New-Item
'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -Force | Out-Null

New-ItemProperty -path
'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null

New-ItemProperty -path
'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server' -name 'DisabledByDefault' -value 1 -PropertyType 'DWord' -Force | Out-Null

sitecore-failed-start-service-sitecore-marketing-automation-engine-windows-11-error-solution-4

YOU MAY ALSO LIKE