📖 ~1 min read
Table of contents
Symptom & Impact
Network Level Authentication fails on Windows Server 2012 R2 hosts after CredSSP updates with ‘An authentication error has occurred. Function requested is not supported.’, blocking RDP for admins.
Environment & Reproduction
Reproducible from clients on older or newer patch levels than the server.
Get-ItemProperty 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemCredSSPParameters'
Get-WinEvent -LogName 'Microsoft-Windows-CAPI2/Operational' -MaxEvents 20
Root Cause Analysis
CredSSP encryption oracle remediation mitigation level mismatch between client and server.
Quick Triage
Inspect CredSSP policy and patch level.
Get-HotFix | Where-Object {$_.HotFixID -match 'KB'} | Sort-Object InstalledOn -Descending | Select -First 10
Get-ItemProperty 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemCredSSPParameters' -Name AllowEncryptionOracle
Step-by-Step Diagnosis
Confirm client patches and policy values.
Test-NetConnection rds01.corp.local -Port 3389
Get-WinEvent -LogName 'Microsoft-Windows-RemoteDesktopServices-RdpCoreTS/Operational' -MaxEvents 20

Solution – Primary Fix
Patch both sides to current cumulative updates and align CredSSP level to Mitigated.
Still having issues? Our IT Consulting team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-ItemProperty 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemCredSSPParameters' -Name AllowEncryptionOracle -Value 1 -Type DWord
Restart-Computer

Solution – Alternative Approaches
Temporarily allow vulnerable connections only when patching is blocked.
Set-ItemProperty 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemCredSSPParameters' -Name AllowEncryptionOracle -Value 2 -Type DWord
Verification & Acceptance Criteria
RDP connects with NLA and no CredSSP errors appear.
mstsc /v:rds01.corp.local /admin
Get-WinEvent -LogName Application -ProviderName 'CredSSP' -MaxEvents 10
Rollback Plan
Set policy back to Force Updated Clients once all sides are patched.
Set-ItemProperty 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemCredSSPParameters' -Name AllowEncryptionOracle -Value 0 -Type DWord
Prevention & Hardening
Maintain consistent patch level across RDP clients/servers and enforce CredSSP via GPO.
Get-HotFix | Sort-Object InstalledOn -Descending | Select -First 5
Related Errors & Cross-Refs
Linked with Credential Guard and NLA-related Kerberos issues.
Related tutorial: View the step-by-step tutorial for Windows Server 2012 R2.
View all Windows Server 2012 R2 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: CredSSP updates and RDP NLA.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.