-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ADFS Update issue #27
Milestone
Comments
Which windows update was problematic for you to apply? I can not confirm any of these issues with our test setups yet. |
Thanks for the information. I think the faulty part is in the install script:
There is only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
we had some issues with applying Windows updates on our ADFS Server. After investigation with MS it was figured out by them that it is related to a unexpected regkey:
HKLM\System\CurrentControlSet\services\eventlog\AD FS/Admin
Which is created by privacyideaADFSprovider
check event source
if (!([System.Diagnostics.EventLog]::SourceExists("privacyIDEAProvider")))
{
New-EventLog -LogName "AD FS/Admin" -Source "privacyIDEAProvider"
Write-Host "Log source created"
}
This is causing that we also don’t see any sort of Logs from the ADFS at all.
It also explains why this EventLog is shown as its own Node instead of a Channel in the MMC.
We are using ADFS Windows Server 2016.
The text was updated successfully, but these errors were encountered: