KDC / Kerberos Eventlog Provider not registered - fails to find 2022-11 related entries

According to the description for the issues with the 2022-11 Updates "Sign in failures and other issues related to Kerberos authentication" on https://learn.microsoft.com/en-us/windows/release-health/status-windows-10-1607-and-windows-server-2016#2953msgdesc : "When this issue is encountered you might receive a Microsoft-Windows-Kerberos-Key-Distribution-Center Event ID 14 error event in the System section of Event Log on your Domain Controller with the below text."
Searching Domain Controller System Eventlog for this event with Powershell fails with the error messages "The specified providers do not write events to any of the specified logs." and "The parameter is incorrect"
--
Get-WinEvent -ComputerName 'dc.contoso.com' -FilterHashtable @{ LogName = 'System'; ProviderName = 'Microsoft-Windows-Kerberos-Key-Distribution-Center'; Id = 14 }
Get-WinEvent : The specified providers do not write events to any of the specified logs.
At line:1 char:1
- Get-WinEvent -ComputerName 'dc.contoso.com' -FilterHashtable @{ LogN ...
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- CategoryInfo : InvalidArgument: (:) [Get-WinEvent], Exception
- FullyQualifiedErrorId : LogsAndProvidersDontOverlap,Microsoft.PowerShell.Commands.GetWinEventCommand
Get-WinEvent : The parameter is incorrect
At line:1 char:1
- Get-WinEvent -ComputerName 'dc.contoso.com' -FilterHashtable @{ LogN ...
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- CategoryInfo : NotSpecified: (:) [Get-WinEvent], EventLogException
- FullyQualifiedErrorId : System.Diagnostics.Eventing.Reader.EventLogException,Microsoft.PowerShell.Commands.GetWinEventCommand
--